iTextSharp.text.factories.ElementFactory.GetSection C# (CSharp) Метод

GetSection() публичный статический Метод

public static GetSection ( Section parent, Properties attributes ) : Section
parent iTextSharp.text.Section
attributes System.util.Properties
Результат iTextSharp.text.Section
        public static Section GetSection(Section parent, Properties attributes) {
            Section section = parent.AddSection("");
            SetSectionParameters(section, attributes);
            return section;
        }