IParagraphCollection class

IParagraphCollection class

Represents a collection of a paragraphs.

The IParagraphCollection type exposes the following members:

Properties

PropertyDescription
countGets the number of elements actually contained in the collection.
Read-only int.
slide
presentation

Gets the element at the specified index.

Indexer

NameDescription
[index]

Methods

MethodDescription
add(self, value)Adds a Paragraph to the end of collection.
add(self, value)Adds a content of ParagraphCollection to the end of collection.
insert(self, index, value)Inserts a Paragraph into the collection at the specified index.
insert(self, index, value)Inserts a content of ParagraphCollection into the collection at the specified index.
add_from_html(self, text)Adds text from specified html string to the collection.
add_from_html(self, text, resolver, uri)Adds text from specified html string to the collection.
clear(self)Removes all elements from the collection.
remove_at(self, index)Removes the element at the specified index of the collection.
remove(self, item)Removes the first occurrence of a specific paragraph.
export_to_html(self, first_paragraph_index, paragraphs_count, options)Converts specifying paragraphs to the HTML and returns it as String object.

See Also