Vcl.DBGrids.TColumnValue
Delphi
TColumnValue = (cvColor, cvWidth, cvFont, cvAlignment, cvReadOnly, cvTitleColor,
cvTitleCaption, cvTitleAlignment, cvTitleFont, cvImeMode, cvImeName);
C++
enum DECLSPEC_DENUM TColumnValue : unsigned char { cvColor, cvWidth, cvFont, cvAlignment, cvReadOnly, cvTitleColor, cvTitleCaption, cvTitleAlignment, cvTitleFont, cvImeMode, cvImeName };
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| enum | public | Vcl.DbGrids.pas Vcl.DBGrids.hpp |
Vcl.DBGrids | Vcl.DBGrids |
Description
TColumnValue and TColumnValues indicate which properties on the column of a DB grid are persistent.
TColumnValues is a set that indicates which properties of a column have been set as persistent properties (overriding the defaults). It can contain zero or more of the following TColumnValue values:
| Value | Indicates changes to |
|---|---|
|
cvColor |
The column's Color property. |
|
cvWidth |
The column's Width property. |
|
cvFont |
The column's Font property. |
|
cvAlignment |
The column's Alignment property. |
|
cvReadOnly |
The column's ReadOnly property. |
|
cvTitleColor |
The column title's Color property. |
|
cvTitleCaption |
The column title's Caption property. |
|
cvTitleAlignment |
The column title's Alignment property. |
|
cvTitleFont |
The column title's Font property. |
|
cvImeMode |
The column's ImeMode property. |
|
cvImeName |
The column's ImeName property. |