An instance of the SectionCollection class contains all sections of a document. A document has at least one section. An instance of this class can be obtained with the TextControl.Sections property. The SectionCollection class implements the IEnumerable and the ICollection interfaces.

Syntax

public sealed class SectionCollection: ICollection, IEnumerable
Public NotInheritable Class SectionCollection
  Implements ICollection
  Implements IEnumerable

Introduced: 14.0.

Examples

The following example shows how to add a new section and get the actual section number.

textControl1.Sections.Add(TXTextControl.SectionBreakKind.BeginAtNewPage);
Console.WriteLine("Section " + textControl1.Sections.GetItem().Number.ToString()
  + " of " + textControl1.Sections.Count.ToString());
TextControl1.Sections.Add(TXTextControl.SectionBreakKind.BeginAtNewPage)
Console.WriteLine("Section " + TextControl1.Sections.GetItem().Number.ToString()
  + " of " + TextControl1.Sections.Count.ToString())

Methods

Method Description
Add Adds a new section to a document.
CopyTo Copies the elements of the collection to an array, starting at a particular index.
GetEnumerator Returns an enumerator that can be used to iterate through the collection.
GetItem Gets the Section with the current text input position from the collection.

Properties

Property Description
Count Gets the number of elements contained in the collection.
Item Gets a section from the collection.