insert method

insert

Inserts a Paragraph into the collection at the specified index.

def insert(self, index, value):
    ...
ParameterTypeDescription
indexintThe zero-based index at which Paragraph should be inserted.
valueIParagraphThe Paragraph to insert.

insert

Inserts a content of ParagraphCollection into the collection at the specified index.

def insert(self, index, value):
    ...
ParameterTypeDescription
indexintThe zero-based index at which paragraphs should be inserted.
valueIParagraphCollectionThe paragraphs to insert.

See Also