Interface ISection
Interface publishes section functionality
Inherited Members
Namespace: Syncfusion.DLS
Assembly: Syncfusion.DLS.Base.dll
Syntax
public interface ISection : ITextBody, IEntityBase
Properties
BreakCode
Gets / sets break code.
Declaration
SectionBreakCode BreakCode { get; set; }
Property Value
Type |
---|
SectionBreakCode |
Columns
Get collection of columns which logically divide page on many printing/publishing areas.
Declaration
ColumnCollection Columns { get; }
Property Value
Type |
---|
ColumnCollection |
HeadersFooters
Gets headers/footers of current section.
Declaration
HeadersFooters HeadersFooters { get; }
Property Value
Type |
---|
HeadersFooters |
PageSetup
Gets page Setup of current section.
Declaration
PageSetup PageSetup { get; }
Property Value
Type |
---|
PageSetup |
Methods
AddColumn(Single, Single)
Adds new column to the section.
Declaration
Column AddColumn(float width, float spacing)
Parameters
Type | Name | Description |
---|---|---|
System.Single | width | |
System.Single | spacing |
Returns
Type |
---|
Column |
Clone(IDocument)
Clones section and sets new owner document.
Declaration
ISection Clone(IDocument document)
Parameters
Type | Name | Description |
---|---|---|
IDocument | document | New owner document |
Returns
Type |
---|
ISection |
MakeColumnsEqual()
Makes all columns in current section to be of equal width.
Declaration
void MakeColumnsEqual()