Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxGridColumnFixedKind Enum

Enumerates grid column anchor modes.

#Declaration

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

#Members

Name Description Example
fkNone

A column is scrollable.

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.

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.

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.

#Remarks

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

See Also