Skip to main content
Row

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

Fill.FillType Property

Gets or sets the fill type.

Namespace: DevExpress.Spreadsheet

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

NuGet Package: DevExpress.Spreadsheet.Core

#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.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the FillType property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also