AddSection() public method

Creates a Section, adds it to this Section and returns it.
public AddSection ( Paragraph title ) : Section
title Paragraph the title of the new section
return Section
コード例 #1
0
ファイル: ElementFactory.cs プロジェクト: bmictech/iTextSharp
 public static Section GetSection(Section parent, Properties attributes)
 {
     Section section = parent.AddSection("");
     SetSectionParameters(section, attributes);
     return section;
 }