Inserts a paragraph into collection at the specified index.

Namespace: Spire.Doc.Collections
Assembly: Spire.Doc (in Spire.Doc.dll) Version: 9.6.1.0 (9.6.1.3020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public void Insert(
	int index,
	IParagraph paragraph
)
Public Sub Insert ( 
	index As Integer,
	paragraph As IParagraph
)
public:
virtual void Insert(
	int index, 
	IParagraph^ paragraph
) sealed
abstract Insert : 
        index : int * 
        paragraph : IParagraph -> unit 
override Insert : 
        index : int * 
        paragraph : IParagraph -> unit 

Parameters

index
Int32
The index.
paragraph
IParagraph
The paragraph.

Implements

IParagraphCollection..::..Insert(Int32, IParagraph)

See Also