ClassSectionColumnCollection
Represents a collection of SectionColumn instances.
Definition
Namespace:Telerik.Windows.Documents.Model
Assembly:Telerik.Windows.Controls.RichTextBox.dll
Syntax:
public class SectionColumnCollection : IEnumerable<SectionColumn>, IEnumerable
Inheritance: objectSectionColumnCollection
Implements:
Constructors
SectionColumnCollection()
Initializes a new instance of the SectionColumnCollection class without columns.
Declaration
public SectionColumnCollection()
SectionColumnCollection(IEnumerable<SectionColumn>, bool)
Initializes a new instance of the SectionColumnCollection class.
The given collection of SectionColumn elements will be added in this collection.
Declaration
public SectionColumnCollection(IEnumerable<SectionColumn> sectionColumns, bool hasSeparator = false)
Parameters
sectionColumns
The section columns.
hasSeparator
If set to true a separator will be added between the columns.
SectionColumnCollection(int)
Initializes a new instance of the SectionColumnCollection class with equally sized columns and default spacing between them (48 DIPs).
Declaration
public SectionColumnCollection(int equalColumnsCount)
Parameters
equalColumnsCount
The number of equally sized columns.
SectionColumnCollection(int, double, bool)
Initializes a new instance of the SectionColumnCollection class with equally sized columns.
Declaration
public SectionColumnCollection(int equalColumnsCount, double columnSpacing = 48, bool hasSeparator = false)
Parameters
equalColumnsCount
The number of equally sized columns.
columnSpacing
The spacing between the equally sized columns. The default value is 48 DIPs.
hasSeparator
If set to true a separator will be added between the equally sized columns. The default value is false.
Methods
GetEnumerator()
Gets the enumerator.
Declaration
public IEnumerator<SectionColumn> GetEnumerator()
Returns
Implements