Skip to main content

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

TdxTileControlCustomStyle.GradientBeginColor Property

Specifies the start color of a gradient fill or the fill color for a solid filling used for a tile control element’s background.

#Declaration

Delphi
property GradientBeginColor: TColor read; write; default clDefault;

#Property Value

Type Default
TColor clDefault

#Remarks

The fill style used for a tile control element’s background is determined based on the GradientBeginColor and GradientEndColor property values:

  • Solid Fill Style. In effect only if the GradientBeginColor property is assigned a value other than clDefault and the GradientEndColor property is set to either clDefault or the GradientBeginColor property value. The GradientBeginColor property value specifies the fill color.

  • Gradient Fill Style. In effect if both the GradientBeginColor and the GradientEndColor properties are assigned a value other than clDefault. These properties specify the gradient’s start and end colors. The Gradient property specifies the gradient fill type.

Note

The Texture property overrides the solid and gradient fill settings specified by the Gradient, GradientBeginColor, and GradientEndColor properties.

The default value of the GradientBeginColor property is clDefault.

See Also