Inserts a child StructureElementElement in a particular location under this one.

 

   

Syntax
 

[C#]
StructureElementElement InsertKid(int index, string type)
StructureElementElement InsertKid(int index, IndirectObject obj, Page page)
StructureElementElement InsertKid(int index, StructureElementElement kid)

 

   

Params
 
Name Description
index The zero based index at which position the child should be inserted..
type The structure type, such as "P" (paragraph) or "TOC" (table of contents).
obj An object which is a structure element in its own right.
page The page on which that object appears.
kid The structure element which will become the child.
returns The newly created child element.

 

   

Notes
 

Inserts a child StructureElementElement in a particular location under this one.

If the provided child is already a part of an existing hierarchy it will be detached from that hierarchy and slotted into this one.

 

   

Example
 

None.