OPEN_GRID API - v1.5.2
    Preparing search index...

    Interface CellRange

    선택된 셀들의 사각형 범위를 네 모서리 인덱스로 나타냅니다(엑셀의 A1:C5 같은 개념). 범위 선택 기능이 이 값을 만들어 내고, 수식의 참조 대상과 차트의 데이터 소스가 이 좌표를 그대로 읽어 씁니다.

    A rectangular block of selected cells, given as its four corner indexes (think of a spreadsheet's A1:C5). Range selection produces it; cell formulas and chart sources consume the same coordinates.

    選択されたセルの矩形範囲を、四隅のインデックスで表します(スプレッドシートの A1:C5 のような考え方)。 範囲選択の機能がこの値を作り出し、数式の参照先とチャートのデータソースがこの座標をそのまま読んで使います。

    좌표가 가리키는 것:

    • 행 인덱스(startRow/endRow)는 "화면에 보이는 순서"입니다. 그룹·트리의 가상 행이나 펼쳐진 상세 행까지 포함한 순서라서, 정렬·필터만 반영한 순수 데이터 순서와는 다를 수 있습니다.
    • 컬럼 인덱스(startCol/endCol)는 "지금 보이는 컬럼들" 기준입니다(숨긴 컬럼 제외). 컬럼을 다시 보이게 하면 재렌더 때 좌표 표시가 갱신됩니다.

    What the coordinates mean:

    • Row indexes are in on-screen order — they include group/tree pseudo-rows and expanded detail rows, so they can differ from the pure data order that reflects only sort/filter.
    • Column indexes count only currently visible columns (hidden ones excluded); un-hiding a column refreshes the displayed coordinates on the next render.

    座標が指すもの:

    • 行インデックス(startRow/endRow)は「画面に見えている順序」です。グループ・ツリーの仮想行や展開された 詳細行まで含んだ順序なので、ソート・フィルターだけを反映した純粋なデータ順序とは異なることがあります。
    • 列インデックス(startCol/endCol)は「今見えている列」が基準です(隠した列は除く)。列を再び表示すると、 再レンダーのときに座標の表示が更新されます。

    주의: 선택의 "영구 신원"은 이 인덱스가 아니라 안정적인 (행 id × field) 앵커로 저장됩니다. CellRange 는 어디까지나 "지금 화면에 투영된" 사각형 표현입니다.

    Note: The persistent identity of a selection is stored as a stable (rowId × field) anchor, not as these indexes — CellRange is only the "currently projected onto screen" rectangle.

    注意: 選択の「永続的な同一性」は、このインデックスではなく安定した(行 id × field)アンカーとして保存されます。 CellRange はあくまで「今、画面に投影された」矩形の表現です。

    一块被选中的矩形单元格区域,用四角的索引表示(可类比电子表格的 A1:C5)。范围选择产出它, 单元格公式的引用对象和图表的数据源直接读取同一组坐标。

    坐标的含义:

    • 行索引(startRow/endRow)按「屏幕上看到的顺序」计算 —— 其中包含分组/树的虚拟行和展开的详情行, 因此可能与只反映排序、筛选的纯数据顺序不同。
    • 列索引(startCol/endCol)只计当前可见的列(隐藏列除外);重新显示某列后,下一次渲染会刷新显示的坐标。

    注意: 选择的「持久身份」保存为稳定的(行 id × field)锚点,而非这些索引。CellRange 始终只是 「当前投影到屏幕上」的矩形表示。

    interface CellRange {
        endCol: number;
        endRow: number;
        startCol: number;
        startRow: number;
    }
    Index

    Properties

    endCol: number

    오른쪽 경계 컬럼(보이는 컬럼 기준).

    Right boundary column (among visible columns).

    右側の境界列(見えている列が基準)。

    右边界列(以可见的列为准)。

    endRow: number

    아래쪽 경계 행(화면 표시 순서).

    Bottom boundary row (on-screen order).

    下側の境界行(画面表示順)。

    下边界行(按屏幕显示顺序)。

    startCol: number

    왼쪽 경계 컬럼(보이는 컬럼 기준).

    Left boundary column (among visible columns).

    左側の境界列(見えている列が基準)。

    左边界列(以可见的列为准)。

    startRow: number

    위쪽 경계 행(화면 표시 순서).

    Top boundary row (on-screen order).

    上側の境界行(画面表示順)。

    上边界行(按屏幕显示顺序)。