RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
DBGrids.TColumnValue Enumeration

TColumnValue and TColumnValues indicate which properties on the column of a DB grid are persistent.

Pascal
TColumnValue = (
  cvColor,
  cvWidth,
  cvFont,
  cvAlignment,
  cvReadOnly,
  cvTitleColor,
  cvTitleCaption,
  cvTitleAlignment,
  cvTitleFont,
  cvImeMode,
  cvImeName
);
C++
enum TColumnValue {
  cvColor,
  cvWidth,
  cvFont,
  cvAlignment,
  cvReadOnly,
  cvTitleColor,
  cvTitleCaption,
  cvTitleAlignment,
  cvTitleFont,
  cvImeMode,
  cvImeName
};

DBGrids

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.  

 

Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!