本文整理汇总了Java中com.lowagie.text.ChapterAutoNumber类的典型用法代码示例。如果您正苦于以下问题:Java ChapterAutoNumber类的具体用法?Java ChapterAutoNumber怎么用?Java ChapterAutoNumber使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
ChapterAutoNumber类属于com.lowagie.text包,在下文中一共展示了ChapterAutoNumber类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createParagraphElement
import com.lowagie.text.ChapterAutoNumber; //导入依赖的package包/类
Element createParagraphElement(String paragraphTitle, String iconName)
throws DocumentException, IOException {
final Paragraph paragraph = new Paragraph("", paragraphTitleFont);
paragraph.setSpacingBefore(5);
paragraph.setSpacingAfter(5);
if (iconName != null) {
paragraph.add(new Chunk(getParagraphImage(iconName), 0, -5));
}
final Phrase element = new Phrase(' ' + paragraphTitle, paragraphTitleFont);
element.setLeading(12);
paragraph.add(element);
// chapter pour avoir la liste des signets
final ChapterAutoNumber chapter = new ChapterAutoNumber(paragraph);
// sans numéro de chapitre
chapter.setNumberDepth(0);
chapter.setBookmarkOpen(false);
chapter.setTriggerNewPage(false);
return chapter;
}
示例2: getChapter
import com.lowagie.text.ChapterAutoNumber; //导入依赖的package包/类
/**
* Creates a ChapterAutoNumber object based on a list of properties.
* @param attributes
* @return a Chapter
*/
public static ChapterAutoNumber getChapter(Properties attributes) {
ChapterAutoNumber chapter = new ChapterAutoNumber("");
setSectionParameters(chapter, attributes);
return chapter;
}