@jsfkit/types
    Preparing search index...

    Type Alias CellOffset

    Specifies a point in the cell grid.

    type CellOffset = {
        col: number;
        colOff: EmuValue;
        row: number;
        rowOff: EmuValue;
    }
    Index

    Properties

    Properties

    col: number

    The column in which the point occurs, 1 indexed.

    colOff: EmuValue

    The position within the column in which the point occurs, in EMUs.

    row: number

    The row in which the point occurs, 1 indexed.

    rowOff: EmuValue

    The offset within the row in which the point occurs, in EMUs.