Class TextCollection

TextCollection class

Contains the text of a shape. Each item is text with character, paragraph and tabs properties.

public class TextCollection : Collection<Text>

Properties

NameDescription
Capacity { get; set; }
Count { get; }
Item { get; set; }

Methods

NameDescription
Add(Text)Add the Text object in the collection.
BinarySearch(Text)
BinarySearch(Text, IComparer<Text>)
BinarySearch(int, int, Text, IComparer<Text>)
Clear()
Contains(Text)
CopyTo(Text[])
CopyTo(Text[], int)
CopyTo(int, Text[], int, int)
Exists(Predicate<Text>)
Find(Predicate<Text>)
FindAll(Predicate<Text>)
FindIndex(Predicate<Text>)
FindIndex(int, Predicate<Text>)
FindIndex(int, int, Predicate<Text>)
FindLast(Predicate<Text>)
FindLastIndex(Predicate<Text>)
FindLastIndex(int, Predicate<Text>)
FindLastIndex(int, int, Predicate<Text>)
GetEnumerator()
IndexOf(Text)
IndexOf(Text, int)
IndexOf(Text, int, int)
LastIndexOf(Text)
LastIndexOf(Text, int)
LastIndexOf(Text, int, int)
Remove(Text)Remove the Text object from the collection.
RemoveAt(int)

See Also