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

    Interface CFScope

    규칙을 걸 칸의 범위 — 컬럼 하나(필수)와, 필요하면 행 범위·행 상태.

    Which cells the rule applies to — one column (required) and optionally a row range or row state.

    規則を掛けるセルの範囲 — 列 1 つ(必須)と、必要なら行の範囲・行の状態。

    规则作用的单元格范围 — 一列(必需),需要时再加行范围或行状态。

    interface CFScope {
        columnId: string;
        range?: { endRow: number; startRow: number };
        rowState?: "added" | "edited" | "removed";
    }
    Index

    Properties

    columnId: string
    range?: { endRow: number; startRow: number }

    행 범위 [startRow, endRow) — 끝은 포함하지 않는다. 없으면 컬럼 전체.

    Row range [startRow, endRow) — end excluded. Absent means the whole column.

    行の範囲 [startRow, endRow) — 終わりは含みません。なければ列全体。

    行范围 [startRow, endRow) — 不含末尾。没有则为整列。

    rowState?: "added" | "edited" | "removed"

    이 상태의 행에만 건다(추가·수정·삭제된 행).

    Apply only to rows in this state (added, edited or removed).

    この状態の行にだけ掛けます(追加・修正・削除された行)。

    只作用于该状态的行(新增、修改、删除的行)。