UNPKG

igniteui-webcomponents-grids

Version:

Ignite UI Web Components grid components.

31 lines (30 loc) 548 B
import { Type } from "igniteui-webcomponents-core"; /** * Indicates the desired horizontal alignment of the cell content. */ export declare enum CellContentHorizontalAlignment { /** * Align left. */ Left = 0, /** * Align center. */ Center = 1, /** * Align right. */ Right = 2, /** * Align stretch */ Stretch = 3, /** * Align auto */ Auto = 4 } /** * @hidden */ export declare let CellContentHorizontalAlignment_$type: Type;