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