テーブルレイアウト項目 - Manageプロパティ
制御するコンポーネントを指定
テーブルレイアウト項目 (PRIM_TBLO.Item) のメンバ
データタイプ - PRIM_CTRL - ビジュアルコントロールの基本クラス
詳細
レイアウト項目によって操作されるコントロールへの参照。
IDE は設計者の使用によってレイアウト定義を管理します。このコードは参考目的のために提供されています。
例
行 1、列 1 の TopLeft に配置されたボタンを持つ簡単な 3x3 テーブルレイアウト。
Define_Com Class(#PRIM_TBLO) Name(#TableLayout)
Define_Com Class(#PRIM_TBLO.Column) Name(#Column1) Displayposition(1) Parent(#TableLayout)
Define_Com Class(#PRIM_TBLO.Column) Name(#Column2) Displayposition(2) Parent(#TableLayout)
Define_Com Class(#PRIM_TBLO.Column) Name(#Column3) Displayposition(3) Parent(#TableLayout)
Define_Com Class(#PRIM_TBLO.Row) Name(#Row1) Displayposition(1) Parent(#TableLayout)
Define_Com Class(#PRIM_TBLO.Row) Name(#Row2) Displayposition(2) Parent(#TableLayout)
Define_Com Class(#PRIM_TBLO.Row) Name(#Row3) Displayposition(3) Parent(#TableLayout)
Define_Com Class(#PRIM_TBLO.Item) Name(#ButtonItem1) Alignment(TopLeft) Column(#Column1) Manage(#Button) Parent(#TableLayout) Row(#Row1) Sizing(None)