Name | Value | Description | |||
exCellHasCheckBox | 0 |
Assigns check boxes to all cells in the column, if it is True. Similar with the CellHasCheckBox
property.
(Boolean expression, False) | |||
exCellHasRadioButton | 1 |
Assigns radio buttons to all cells in the column, if it is True. Similar with
the CellHasRadioButton property.
(Boolean expression, False) | |||
exCellHasButton | 2 |
Specifies that all cells in the column are buttons, if it is True. Similar with
the CellHasButton property.
(Boolean expression, False) | |||
exCellButtonAutoWidth | 3 |
Specifies that all buttons in the column fit the cell's caption, if it is True.
Similar with the CellButtonAutoWidth
property.
(Boolean expression, False) | |||
exCellBackColor | 4 |
Specifies the background color for all cells in the column. Use the CellBackColor
property to assign a background color for a specific cell. The property has
effect only if the property is different than zero.
( Long expression ) | |||
exCellForeColor | 5 |
Specifies the foreground color for all cells in the column. Use the CellForeColor
property to assign a foreground color for a specific cell. The property has
effect only if the property is different than zero.
( Long expression ) | |||
exCellVAlignment | 6 |
Specifies the column's vertical alignment. By default, the Def(exCellVAlignment)
property is exMiddle. Use the CellVAlignment
property to specify the vertical alignment for a particular cell.
( VAlignmentEnum expression, exMiddle ) | |||
exHeaderBackColor | 7 |
Specifies the column's header background color. The property has effect only if
the property is different than zero. Use this option to change the background
color for a column in the header area. The exHeaderBackColor option supports
skinning, so the last 7 bits in the high significant byte of the color to
indicates the identifier of the skin being used. Use the Add
method to add new skins to the control.
( Color expression ) | |||
exHeaderForeColor | 8 |
Specifies the column's header background color. The property has effect only if
the property is different than zero.
( Color expression ) | |||
exCellSingleLine | 16 |
Specifies that all cells in the column displays its content into single or
multiple lines.
Similar with the CellSingleLine property. If
using the CellSingleLine /
Def(exCellSingleLine) property, we recommend to set the ScrollBySingleLine
property on True so all items can be scrolled.
( CellSingleLineEnum type, previously Boolean expression ) | |||
exCellValueFormat | 17 |
Similar with the CellValueFormat
property,
( ValueFormatEnum expression, exText ) | |||
exTotalColumn | 20 |
Specifies a formula that defines the total fields applied to all unformatted and
non-leaf cells within the column. This option is effective when displaying hierarchical data, allowing aggregate functions like sum or count to be shown for parent items. Essentially, the exTotalColumn option applies a consistent formula to all unformatted and non-leaf cells within the column. A cell is considered unformatted if its
FormatCell property is empty. The ItemHasChildren property indicates whether an item has one or more child items.
The formula should be of aggregate(list,direction,formula)
format as defined in exTotalField of ValueFormatEnum
type. The CellValueFormat property on exTotalField specifies that a particular cell displays an aggregate function.
For instance:
( String expression ) | |||
exFilterPatternTemplate | 21 |
Specifies the template for the column's filter when the Filter property or the 'Filter For' field is populated.
This property customizes the filter pattern for the column when the FilterType property is set to
exPattern. It supports the
<%filter%> keyword, which replaces the original filter input. For example, setting
Def(exFilterPatternTemplate) to
"*<%filter%>*" filters for all items containing the specified sequence, while setting it to
"Item*<%filter%>" filters for all items starting with 'Item' and ending with the typed characters. If the
Column.Def(exFilterPatternTemplate) property is empty, the filter is applied as it
is (no effect).
( String expression ) | |||
exCellFormatLevel | 32 |
Specifies the format layout for the cells. The CellFormatLevel
property indicates the format layout for a specified cell. Use the FormatLevel
property to specify the layout of the column in the control's header bar.
( CRD string expression ) | |||
exCellOwnerDraw | 33 |
Assigns an owner draw object for the entire column. Use the CellOwnerDraw
property to assign an owner draw object to a single cell.
( an object that implements the IOwnerDrawHandler interface ) | |||
exCellDrawPartsOrder | 34 |
Specifies the order of the drawing parts for the entire column. By default,
this option is "check,icon,icons,picture,caption", which means that
the cell displays its parts in the following order: check box/ radio buttons ( CellHasCheckBox/CellRadioButton
), single icon ( CellImage ), multiple icons
( CellImages ), custom size picture ( CellPicture
), and the cell's caption. Use the exCellDrawPartsOrder option to specify a new
order for the drawing parts in the cells of the column. The RightToLeft
property automatically flips the order of the columns.
( String expression, "check,icon,icons,picture,caption" ) | |||
exCellPaddingLeft | 48 |
Gets or sets the left padding (space) of the cells within the column.
( Long expression ) | |||
exCellPaddingRight | 49 |
Gets or sets the right padding (space) of the cells within the column.
( Long expression ) | |||
exCellPaddingTop | 50 |
Gets or sets the top padding (space) of the cells within the column.
( Long expression ) | |||
exCellPaddingBottom | 51 |
Gets or sets the bottom padding (space) of the cells within the column.
( Long expression ) | |||
exHeaderPaddingLeft | 52 |
Gets or sets the left padding (space) of the column's header.
( Long expression ) | |||
exHeaderPaddingRight | 53 |
Gets or sets the right padding (space) of the column's header.
( Long expression ) | |||
exHeaderPaddingTop | 54 |
Gets or sets the top padding (space) of the column's header.
( Long expression ) | |||
exHeaderPaddingBottom | 55 |
Gets or sets the bottom padding (space) of the column's header.
( Long expression ) | |||
exColumnResizeContiguously | 64 |
Gets or sets a value that indicates whether the control's content is updated while the user is resizing the column.
( Boolean expression, False ) |