TabStopCollection
Represents a collection of TabStop elements.
Definition
Namespace:Telerik.WinForms.Documents.Model
Assembly:Telerik.WinControls.RichTextEditor.dll
Syntax:
public class TabStopCollection : IList, ICollection, IEnumerable
Inheritance: objectTabStopCollection
Implements:
Constructors
Initializes a new instance of the TabStopCollection class.
public TabStopCollection()
Initializes a new instance of the TabStopCollection class.
public TabStopCollection(IEnumerable<TabStop> tabStops)
The tab stops to be added to the collection.
Initializes a new instance of the TabStopCollection class.
public TabStopCollection(TabStopCollection fromCollection)
A TabStopCollection whose TabStops will be added to the new collection.
Properties
Gets the number of elements contained in the ICollection<T>.
public int Count { get; }
Implements:
Gets a value indicating whether the IList has a fixed size.
public bool IsFixedSize { get; }
Implements:
Gets a value indicating whether the ICollection<T> is read-only.
public bool IsReadOnly { get; }
Implements:
Gets a value indicating whether access to the ICollection is synchronized (thread safe).
public bool IsSynchronized { get; }
Implements:
Gets an object that can be used to synchronize access to the ICollection.
public object SyncRoot { get; }
Implements:
Methods
Removes all items from the ICollection<T>.
public void Clear()
Implements:
Clones this instance.
Copies the elements of the ICollection to an Array, starting at a particular Array index.
public void CopyTo(Array array, int index)
The one-dimensional Array that is the destination of the elements copied from ICollection. The Array must have zero-based indexing.
indexintThe zero-based index in array at which copying begins.
Implements:
Returns an enumerator that iterates through the collection.
public IEnumerator<TabStop> GetEnumerator()
IEnumerator<TabStop>
An enumerator that can be used to iterate through the collection.
Removes the first occurrence of a specific TabStop from the ICollection<T>.