How do you have a bulletted list in migradoc / pdfsharp

两盒软妹~` 提交于 2019-12-04 23:42:10

Here's a sample (a few lines added to the HelloWorld sample):

// Add some text to the paragraph
paragraph.AddFormattedText("Hello, World!", TextFormat.Italic);

// Add Bulletlist begin
Style style = document.AddStyle("MyBulletList", "Normal");
style.ParagraphFormat.LeftIndent = "0.5cm";
string[] items = "Dodge|Nissan|Ford|Chevy".Split('|');
for (int idx = 0; idx < items.Length; ++idx)
{
  ListInfo listinfo = new ListInfo();
  listinfo.ContinuePreviousList = idx > 0;
  listinfo.ListType = ListType.BulletList1;
  paragraph = section.AddParagraph(items[idx]);
  paragraph.Style = "MyBulletList";
  paragraph.Format.ListInfo = listinfo;
}
// Add Bulletlist end

return document;

I didn't use the AddToList method to have it all in one place. In a real application I'd use that method (it's a user-defined method, code given in this thread).

A little bit more concise than the above answer:

var document = new Document();

var style = document.AddStyle("BulletList", "Normal");
style.ParagraphFormat.LeftIndent = "0.5cm";
style.ParagraphFormat.ListInfo = new ListInfo
{
    ContinuePreviousList = true,
    ListType = ListType.BulletList1
};

var section = document.AddSection();
section.AddParagraph("Bullet 1", "BulletList");
section.AddParagraph("Bullet 2", "BulletList");

Style is only created once, including listinfo, and can be re-used everywhere.

With PDFsharp you must draw the bullets yourself.

With MigraDoc you add a paragraph and set paragraph.Format.ListInfo for this paragraph to create a bullet list.

The linked thread shows two helper routines: DefineList() only sets a member variable so next time a new list will be created. AddToList() is called for each entry.

Simply call DefineList() to start a new bullet list, then call AddToList() for every entry. DefineList() makes a big difference for numbered lists.

Adapt the helper routines for your needs.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!