RevGrid - v0.10.0
    Preparing search index...
    interface RevSelectionArea<
        BCS extends RevBehavioredColumnSettings,
        SF extends RevSchemaField,
    > {
        areaTypeId: RevSelectionAreaTypeId;
        exclusiveBottomRight: RevPoint;
        firstCorner: CornerId;
        height: number;
        inclusiveFirst: RevPoint;
        size: number;
        subgrid: undefined | RevSubgrid<BCS, SF>;
        topLeft: RevPoint;
        width: number;
        x: number;
        y: number;
    }

    Type Parameters

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    exclusiveBottomRight: RevPoint
    firstCorner: CornerId

    The corner of the area designated as its first corner.

    height: number

    The height of the rectangle.

    inclusiveFirst: RevPoint

    A point representing the first corner of the area.

    The x and y coordinates represent the relevant edges of the rectangle (ie are inclusive).

    size: number
    subgrid: undefined | RevSubgrid<BCS, SF>
    topLeft: RevPoint
    width: number

    The width of the rectangle.

    x: number

    The x-coordinate of the top-left corner of the rectangle.

    y: number

    The y-coordinate of the top-left corner of the rectangle.