'Declaration
Public Function InsertPage( _
ByVal As Integer, _
ByVal As ImGearPage, _
ByVal As Integer, _
ByVal As Integer _
) As Integer
'Usage
Dim instance As ImGearXPSDocument
Dim index As Integer
Dim page As ImGearPage
Dim width As Integer
Dim height As Integer
Dim value As Integer
value = instance.InsertPage(index, page, width, height)
public int InsertPage(
int ,
ImGearPage ,
int ,
int
)
public: int InsertPage(
int ,
ImGearPage* ,
int ,
int
)
public:
int InsertPage(
int ,
ImGearPage^ ,
int ,
int
)
Parameters
- index
- Position where page is to be inserted. If it is less than 0 or more than total
page count, it is appended after the last page.
- page
- ImageGear.Core.ImGearPage to be inserted.
- width
- Width of page, in 1/100 inches.
- height
- Height of page, in 1/100 inches.
Return Value
Position of the newly inserted page.