Class Paragraphs
Paragraphs class
This class represents paragraph collection.
public class Paragraphs : ICloneable, IEnumerable<BaseParagraph>
Constructors
Name | Description |
---|
Paragraphs() | The default constructor. |
Properties
Name | Description |
---|
Count { get; } | Get paragraphs count. |
Item { get; set; } | Gets or sets paragraph from or to collection. |
Methods
Name | Description |
---|
Add(BaseParagraph) | Add paragraph to collection. |
Clear() | Clear paragraphs. |
Clone() | Clones a new Clone object. |
GetEnumerator() | Gets the enumerator. |
GetRange(int, int) | Remove paragraphs range. |
Insert(int, BaseParagraph) | Insert paragraph to collection. |
InsertRange(int, IEnumerable<BaseParagraph>) | Inserts the elements of a collection into the list at the specified index. |
Remove(BaseParagraph) | Remove paragraph from collection. |
RemoveRange(int, int) | Remove paragraphs range. |
See Also