UNPKG

igniteui-webcomponents-grids

Version:

Ignite UI Web Components grid components.

23 lines (22 loc) 513 B
import { Type } from "igniteui-webcomponents-core"; /** * Enumeration defining different positions a column can be fixed against. */ export declare enum PinnedPositions { /** * The column is not fixed. */ None = 0, /** * The column is pinned against the left side of the grid. */ Left = 1, /** * The column is pinned against the right side of the grid. */ Right = 2 } /** * @hidden */ export declare let PinnedPositions_$type: Type;