@mpeggroup/mpeg-sdl-parser
    Preparing search index...

    Interface Location

    Represents a location within a text document.

    Location

    interface Location {
        column: number;
        position: number;
        row: number;
    }
    Index
    column: number

    The one-based column number in the text document.

    position: number

    The zero-based position within the entire text.

    row: number

    The one-based row number in the text document.