Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
看过 Cete DynamicPDF 文档,但似乎找不到任何关于创建项目符号列表的内容。这肯定是可能的吗?
好像这就是你所追求的
http://www.dynamicpdf.com/support/net_help_library_09_07/ceTe.DynamicPDF~ceTe.DynamicPDF.PageElements.UnorderedList.html
在 C# 中,这将类似于以下内容(未经测试)
var list = new UnorderedList(0, 0, width, height, font, fontSize, UnorderedListStyle.Disc); list.Items.Add("Item 1"); list.Items.Add("Item 2"); list.Items.Add("Item 3"); currentPage.Elements.Add(list);