技术开发 频道

一个利用ChapterAutoNumber(iTextSharp的一个类)自动创建书签


【IT168技术文档】

BaseFont bf =BaseFont.CreateFont("STSong-Light", "UniGB-UCS2-H", BaseFont.NOT_EMBEDDED); Font font1 =new Font(bf, 12, Font.NORMAL); Paragraph par =null; ChapterAutoNumber charp =null; for (int i =0; i < 20; i++) { par =new Paragraph("中华人民共和国万岁", font1); charp =new ChapterAutoNumber(par); // step 4 document.Add(charp); //document.NewPage(); }
0
相关文章