IParagraphCollection
Overview
IParagraphCollection is a interface in Aspose.Slides FOSS for .NET.
Represents a collection of paragraphs.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
Count | int | Read | Gets the number of paragraphs in the collection |
AsISlideComponent | ISlideComponent | Read | Provides the collection as an ISlideComponent interface |
AsIEnumerable | IEnumerable<IParagraph> | Read | Returns an IEnumerable |
IsReadOnly | bool | Read | Indicates whether the collection cannot be modified |
Methods
| Signature | Description |
|---|---|
Add(value: IParagraph) | The paragraph to add. |
Insert(index: int, value: IParagraph) | The paragraph to insert. |
Clear() | Removes all paragraphs from the collection |
RemoveAt(index: int) | The zero-based index of the paragraph to remove. |
Remove(item: IParagraph) | true if the paragraph was found and removed; otherwise, false. |
Contains(item: IParagraph) | true if the paragraph is found; otherwise, false. |
IndexOf(item: IParagraph) | The zero-based index of the paragraph if found; otherwise, -1. |