The object containing the column properties of the rendering state.

interface GridRenderColumnsProps {
    firstColIdx: number;
    lastColIdx: number;
    leftEmptyWidth: number;
    rightEmptyWidth: number;
}

Properties

firstColIdx: number

The index of the first rendered column.

lastColIdx: number

The index of the last rendered column.

leftEmptyWidth: number

The left offset required to position the viewport at the beginning of the first rendered column.

rightEmptyWidth: number

The right offset required to position the viewport to the end of the last rendered column.