RenderTableオブジェクトを作成して、RenderTable.Cells.Textプロパティを設定します。
サンプルコード(VB) |
コードのコピー
|
---|---|
' 表を作成します。 Dim table = New RenderTable() For r As Integer = 0 To 2 For c As Integer = 0 To 2 table.Cells(r, c).Text = String.Format("({0}, {1})", r, c) Next Next table.Style.GridLines.All = LineDef.[Default] doc.Body.Children.Add(table) |
サンプルコード(C#) |
コードのコピー
|
---|---|
// 表を作成します。 var table = new RenderTable(); for (int r = 0; r < 3; r++) { for (int c = 0; c < 3; c++) { table.Cells[r, c].Text = string.Format("({0}, {1})", r, c); } } table.Style.GridLines.All = LineDef.Default; doc.Body.Children.Add(table); |