An object which holds the cell configuration for a widget.

interface ICellConfig {
    column: number;
    columnSpan: number;
    row: number;
    rowSpan: number;
}

Properties

column: number

The column index for the widget.

columnSpan: number

The column span for the widget.

row: number

The row index for the widget.

rowSpan: number

The row span for the widget.