TableInternalBorders (列挙)
public TableInternalBorders
インポート元: CURL.GUI.STANDARD. package 内で定義されています CURL.GUI.BASE.
要素リスト:
none
columns
rows
groups
all

内部の境界線を引く場所を定義します。

説明


例: テーブル内部ボーダーの使用
{let t:Table =
    {Table
        columns = 4,
        {skip}, "Team A", "Team B", "Team C",
        "Game 1", "30", "32", "22",
        "Game 2", "33", "32", "35",
        "Game 3", "22", "24", "30",
        "Game 4", "12", "22", "08",
        "Game 5", "42", "44", "29",
        internal-borders = TableInternalBorders.groups
    }
}

{t.group-rows TableGroup.header, 0}
{t.group-columns TableGroup.header, 0}

{let dd:DropdownList =
    {DropdownList
        "none", "rows", "columns", "all", "groups",
        value = "groups",
        {on ValueChanged do
            set t.internal-borders = dd.value
        }
    }
}
{spaced-hbox 
    margin = 2pt,
    dd, t
}