Skip to main content

TcxGridColumnFixedKind Enum

Enumerates grid column anchor modes.

Declaration

TcxGridColumnFixedKind = (
    fkNone,
    fkLeft,
    fkRight,
    fkLeftDynamic
);

Members

Name Description Example
fkNone

A column is scrollable.

Unanchored Columns Example

fkLeft

A Table View column or Banded Table View band is anchored to the grid View’s left border or the last column or band anchored to the left.

Left Column Anchor Position Example

fkRight

A Table View column or Banded Table View band is anchored to the grid View’s right border or the last column or band anchored to the right.

Right Column Anchor Position Example

fkLeftDynamic

A Table View column or Banded Table View band can move freely to the right (when a user scrolls the grid View to the left), but docks to the left when a user scrolls to the right.

Left Dynamic Column Anchor Position Example

Remarks

A grid column’s FixedKind property references the TcxGridColumnFixedKind type.

See Also