AutoTable 行を作成します
PRIM_PDF.AutoTable (PRIM_PDF.AutoTable) のメンバ
パラメータ
名前 |
タイプ |
データタイプ |
記述 |
Result |
*Result (任意) |
新規 AutoTableRow インスタンスへの参照 |
詳細
PDF の AutoTable 行を作成します。
例
以下の例では、AutoTable 行が 1 つ作成されます。
Define_Com Class(#PRIM_PDF.AutoTable) Name(#Table) Reference(*DYNAMIC) Theme(Striped) Columncount(3)
Define_Com Class(#PRIM_PDF.AutoTableRow) Name(#Row) Reference(*DYNAMIC)
- Create row
#Row <= #Table.CreateRow - Add cells to row (must match table column count)
#Row.addCell Value(#xContactLastName)
#Row.addCell Value(#xContactFirstName)
#Row.addCell Value(#xContactMobilePhone) - Add row to table
#Table.AddRow Row(#Row)
参照
すべてのコンポーネント クラス
テクニカルリファレンス