Class Paragraphs

Paragraphs class

This class represents paragraph collection.

public class Paragraphs : ICloneable, IEnumerable<BaseParagraph>

Constructors

NameDescription
Paragraphs()The default constructor.

Properties

NameDescription
Count { get; }Get paragraphs count.
Item { get; set; }Gets or sets paragraph from or to collection.

Methods

NameDescription
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