@jsfkit/types
    Preparing search index...

    Type Alias GridSize

    A size of a UI-grid measure over a range of items.

    GridSize information is run-length encoded. The start and end attributes indicate the range of items that the GridSize.size and GridSize.s attributes affect. The range is expressed using integers, where 1 corresponds to column A or row 1.

    GridSize may have a style-index (GridSize.s) attribute like individual cells. The styling information on the column should be used for all cells that are not present in the sheet's cell collection.

    type GridSize = {
        end: integer;
        s?: integer;
        size: PixelValue;
        start: integer;
    }
    Index

    Properties

    Properties

    end: integer

    A 1-based inclusive end index.

    s?: integer

    An index to a style in the workbook styles.

    The size of the grid item in pixels.

    start: integer

    A 1-based inclusive start index.