IParagraphCollection

IParagraphCollection

Overview

IParagraphCollection is a interface in Aspose.Slides FOSS for .NET.

Represents a collection of paragraphs.

Properties

NameTypeAccessDescription
CountintReadGets the number of paragraphs in the collection
AsISlideComponentISlideComponentReadProvides the collection as an ISlideComponent interface
AsIEnumerableIEnumerable<IParagraph>ReadReturns an IEnumerable for enumeration
IsReadOnlyboolReadIndicates whether the collection cannot be modified

Methods

SignatureDescription
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.

See Also