Icon TGridColumnControlType

Unit: WebGrids

TGridColumnControlType = (ctNone,ctEdit,ctEditComboBox,
      ctDialogEditComboBox, ctCheckBox,ctLink,ctIcon,ctImage,
      ctDateEditComboBox, ctMultiLineEdit,ctHTML)

Available In: Client Applications

The TGridColumnControlType enumerated type is used with the TGridColumn class to specify the type of control to be used when displaying or editing a grid column.

ElementDescription
ctCheckBoxSpecifies that the grid column will use a checkbox control for editing its cells.
ctDateEditComboBoxSpecifies that the grid column will use a date combo box control for editing its cells.
ctDialogEditComboBoxSpecifies that the grid column will use a dialog combo box control for editing its cells.
ctEditSpecifies that the grid column will use a single-line edit control for editing its cells.
ctEditComboBoxSpecifies that the grid column will use an edit combo box control for editing its cells.
ctHTMLSpecifies that the grid column will display its cells as HTML.
ctIconSpecifies that the grid column will display its cells as icons. The content of the cells specifies the name of the icon to display.
ctImageSpecifies that the grid column will display its cells as images. The content of the cells specifies the URL of the image to display.
ctLinkSpecifies that the grid column will display its cells as links.
ctMultiLineEditSpecifies that the grid column will use a multi-line edit control for editing its cells.
ctNoneSpecifies that the grid column will not use any special controls for editing/displaying. This is the default value, and using this value will result in the grid column not being editable.
Image