2

挿入する必要があります

  var f = new Floater
                            {
                                Padding = new Thickness(0, 0, 0, 0),
                                Margin = new Thickness(0, 0, 5, 0),
                                HorizontalAlignment = HorizontalAlignment.Left,
                                Width = 210
                            };

表のセルに

var table = myFlowDocument.Document.Blocks.FirstBlock as Table;

table.RowGroups[0].Rows[0].Cells[0].SetValue(???);

そして、それを行う方法を本当に理解できません。

また、セルの洗浄方法も不明です。

どんな手掛かり?

ありがとうございました!

(このリンクとこのリンクについては役に立ちません...)

4

1 に答える 1

1

BlocksMSDN のプロパティのドキュメントを参照してください。

var cell = table.RowGroups[0].Rows[0].Cells[0];

// Clear the content
cell.Blocks.Clear();

// Add some text
cell.Blocks.Add(new Paragraph(new Run("Hello world")));

// Add a floater
cell.Blocks.Add(new Paragraph(new Floater()));
于 2012-09-13T12:41:02.943 に答える