Class SectionColumnCollection
Represents a collection of SectionColumn instances.
Inheritance
Namespace: Telerik.Windows.Documents.Model
Assembly: Telerik.Windows.Documents.dll
Syntax
public class SectionColumnCollection : Object, IEnumerable<SectionColumn>, IEnumerable
Constructors
SectionColumnCollection()
Initializes a new instance of the SectionColumnCollection class without columns.
Declaration
public SectionColumnCollection()
SectionColumnCollection(IEnumerable<SectionColumn>, Boolean)
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
System.Collections.Generic.IEnumerable<SectionColumn>
sectionColumns
The section columns. |
System.Boolean
hasSeparator
If set to |
SectionColumnCollection(Int32)
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
System.Int32
equalColumnsCount
The number of equally sized columns. |
SectionColumnCollection(Int32, Double, Boolean)
Initializes a new instance of the SectionColumnCollection class with equally sized columns.
Declaration
public SectionColumnCollection(int equalColumnsCount, double columnSpacing = 48, bool hasSeparator = false)
Parameters
System.Int32
equalColumnsCount
The number of equally sized columns. |
System.Double
columnSpacing
The spacing between the equally sized columns. The default value is 48 DIPs. |
System.Boolean
hasSeparator
If set to |
Methods
GetEnumerator()
Gets the enumerator.
Declaration
public IEnumerator<SectionColumn> GetEnumerator()
Returns
System.Collections.Generic.IEnumerator<SectionColumn>
|