Defined in: features/column-pinning/columnPinningFeature.types.ts:41
getCanPin: () => boolean;
Defined in: features/column-pinning/columnPinningFeature.types.ts:45
Returns whether or not the column can be pinned.
boolean
getIsPinned: () => ColumnPinningPosition;
Defined in: features/column-pinning/columnPinningFeature.types.ts:49
Returns the pinned position of the column. ('left', 'right' or false)
getPinnedIndex: () => number;
Defined in: features/column-pinning/columnPinningFeature.types.ts:53
Returns the numeric pinned index of the column within a pinned column group.
number
pin: (position) => void;
Defined in: features/column-pinning/columnPinningFeature.types.ts:57
Pins a column to the 'left' or 'right', or unpins the column to the center if false is passed.
void