Skip to main content
A newer version of this page is available. .
Row

Fill.FillType Property

Gets or sets the fill type.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v18.2.Core.dll

Declaration

FillType FillType { get; set; }

Property Value

Type Description
FillType

A FillType enumeration member. Default is Pattern.

Available values:

Name Description
Pattern

The background is painted using a pattern.

Gradient

The background is painted using a color gradient.

Remarks

The FillType property specifies the fill type and the set of properties that will be used to fill the background.

If the FillType is set to the FillType.Gradient, the Fill.Gradient values will be used. If the FillType is set to the FillType.Pattern value, the background will be filled with a pattern whose settings are specified by the Fill.BackgroundColor, Fill.PatternType and Fill.PatternColor properties.

To access the Fill object, use the Formatting.Fill property.

See Also