Web.DBWeb.THTMLColumnState
Delphi
THTMLColumnState = (csDefault, csCustom);
C++
enum DECLSPEC_DENUM THTMLColumnState : unsigned char { csDefault, csCustom };
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| enum | public | Web.DBWeb.pas Web.DBWeb.hpp |
Web.DBWeb | Web.DBWeb |
Description
THTMLColumnState indicates how an application generates the column descriptors for an HTML table.
THTMLColumnState can be one of the following values:
| Value | Meaning |
|---|---|
|
csDefault |
Column descriptors are dynamically generated to correspond exactly to the order and number of fields in a dataset. Dynamically-generated column descriptors impose no special display attributes. |
|
csCustom |
Column descriptors are static objects to which the application adds display attributes. Static column descriptors can change the order of fields, add additional columns for calculated fields, or include a subset of the field in the datset. |