TcxDefaultEditStyleController.StyleDisabled Property
Defines default style settings applied to disabled editors.
Declaration
property StyleDisabled: TcxEditStyle read; write;
Property Value
Type | Description |
---|---|
TcxEditStyle | Stores editor state style settings. |
Remarks
The Style property defines the base default appearance settings for all editor states. You can use the StyleDisabled
property to define different appearance attributes for disabled editors (that is, the editors whose Enabled properties are set to False
).
Disabled State Style Settings
For instance, you can use StyleDisabled
.Font, StyleDisabled
.TextColor, and StyleDisabled
.TextStyle to customize text appearance for disabled editors. The StyleDisabled
.LookAndFeel property allows you to apply a different skin to disabled editors.
Refer to the TcxEditStyle class description for detailed information on all available options.
Individual Editor Style Settings
To customize disabled state appearance of an individual editor, use its StyleDisabled property. All appearance settings accessible through the StyleDisabled property of an individual editor have higher priority than corresponding settings accessible through the style controller’s StyleDisabled
property.