vcl-cxcontainer-d9193096.md
Enumerates all flags that correspond to individual style settings.
TcxContainerStyleValue = 0..SizeOf(Integer) * 8 - 1;
Style setting flags allow you to track style setting changes in the current style or at the current hierarchy level and reset them. If a flag (that is, an individual TcxContainerStyleValue value) is set, the corresponding style setting is in effect. Otherwise, the current style inherits the corresponding setting from the base style.
A TcxContainerStyleValues value can include any number of the following flags in any combination:
| Flag | Assigned Style Setting | Description |
|---|---|---|
csvBorderColor | TcxCustomContainerStyle.BorderColor | The current style defines a border color. |
csvBorderStyle | TcxCustomContainerStyle.BorderStyle | The current style defines a border style. |
csvColor | TcxCustomContainerStyle.Color | The current style defines a background color. |
csvEdges | TcxCustomContainerStyle.Edges | The current style defines a set of visible borders (left, top, right, and/or bottom). |
csvFont | TcxCustomContainerStyle.Font | The current style defines font settings. |
csvHotTrack | TcxCustomContainerStyle.HotTrack | The current style defines a distinct hot-tracked state as available. |
csvShadow | TcxCustomContainerStyle.Shadow | The current style specifies if a shadow is present. |
csvTextColor | TcxCustomContainerStyle.TextColor | The current style defines a text color. |
csvTextStyle | TcxCustomContainerStyle.TextStyle | The current style defines a set of font attributes (bold, italic, underline, and/or strikeout). |
csvTransparentBorder | TcxCustomContainerStyle.TransparentBorder | The current style specifies if borders are transparent. |
csvReadOnly | TcxCustomContainerStyle.ReadOnly | The current style defines a distinct read-only state as available. |
The TcxContainerStyleValues type references the TcxContainerStyleValue type.
See Also