1

1 つは番号付きリストを作成し、もう 1 つはこのサイトで示されているように箇条書きリストを作成する必要があります。

http://sharepointweblog.blogspot.com/2009/07/open-xml-insert-bullets-and-numbering.html

しかし、両方とも番号が付けられています..なぜですか?

また.. openXML を使用してプログラムで word doc を作成するのは、非常に面倒なようです.. 基本的な word doc の作成を説明するのに役立つ参考文献はありますか? (一部のテキスト、一部の箇条書き)..

Paragraph paraBullet1 = new Paragraph(
              new ParagraphProperties(
              new ParagraphStyleId() { Val = "ListParagraph" },
              new NumberingProperties(
                                      new NumberingLevelReference() { Val = 0 },
                                      new NumberingId() { Val = 1 })),
                                      new Run(new Text("List 1"))
                                      ) { RsidParagraphAddition = "005F3962", RsidParagraphProperties = "00330DA9", RsidRunAdditionDefault = "00330DA9" };

Paragraph paraTest2 = body.AppendChild(paraBullet1);

Paragraph paraBullet2 = new Paragraph(
             new ParagraphProperties(
             new ParagraphStyleId() { Val = "ListParagraph" },
             new NumberingProperties(
                                     new NumberingLevelReference() { Val = 0 },
                                     new NumberingId() { Val = 2 })),
                                     new Run(new Text("List 2"))
                                     ) { RsidParagraphAddition = "00031711", RsidParagraphProperties = "00031711", RsidRunAdditionDefault = "00031711" };

Paragraph paraTest2x = body.AppendChild(paraBullet2);
4

1 に答える 1