igniteui-react-grids
Version:
Ignite UI React grid components.
31 lines (30 loc) • 534 B
TypeScript
import { Type } from "igniteui-react-core";
/**
* Indicates the desired vertical alignment of the cell content.
*/
export declare enum CellContentVerticalAlignment {
/**
* Align top.
*/
Top = 0,
/**
* Align center.
*/
Center = 1,
/**
* Align bottom.
*/
Bottom = 2,
/**
* Align stretch
*/
Stretch = 3,
/**
* Align auto
*/
Auto = 4
}
/**
* @hidden
*/
export declare let CellContentVerticalAlignment_$type: Type;