Namespace TallComponents.PDF.Layout.Paragraphs
Class FragmentCollection
Collection of fragment objects.
Syntax
public class FragmentCollection : Object,IEnumerable,ICloneable
Constructors
Properties
Int32 Count
Number of fragment objects in this collecion.
Fragment Item
0-based indexer that returns the fragments at the specified position.
Returns if index is invalid.
Methods
Fragment Add()
Add a fragment to this collection.
Void Add(Fragment)
Add an existing fragment to this collection.
Void AddRange(FragmentCollection)
Adds the elements of a FragmentCollection to the end of this collection.
Void AddRange(Fragment[])
Adds the elements of an array of fragments to the end of this collection.
Void Clear()
Removes all fragments from this collection.
FragmentCollection Clone()
Clones a FragmentCollection.
Void Compose(Document)
Implement this method in a derived class to generate content
dynamically.
Boolean Contains(Fragment)
Determine whether an Fragment is in the FragmentCollection.
IEnumerator GetEnumerator()
Implements strong typed IEnumerable<T>.GetEnumerator.
Int32 IndexOf(Fragment)
Searches for the specified Fragment in the FragmentCollection.
Void Insert(Int32,Fragment)
Insert an on a specific place in this .
Void Remove(Fragment)
Removes an Fragment from this FragmentCollection.
Void RemoveAt(Int32)
Removes an Fragment from the FragmentCollection at the specified index.