2022.2

Table Of Contents
0-based index of the page to acquire.
Return value
An IPage object for the specified page. (See "Page object" below.)
Move(index, count, offset)
Moves a range of pages within the same PDF.
Syntax
VOID Move (
LONG index,
LONG count,
LONG offset
)
index
0-based index of the first page of the range.
count
Number of contiguous pages to move.
offset
Number of hops to move the pages. If negative, the pages are moved towards the beginning of the
file. If positive, towards the end.
Page object
The Page object implements the IPage interface. This interface defines methods to retrieve information
from a page or modify it. A page may also be drawn on a Windows Device Context (DC), but note that
access to DCs may not be available in all scripting languages.
IPage properties
Name Type Description
Orientation Integer
Gets/sets the orientation of the page, in degrees. The value is always a multiple of 90 and is the number of degrees the
page should be rotated clockwise when displayed or printed.
IPage methods
Name
Return
type
Description
"ExtractText(left, bottom, right, top)"
on page209
String
Deprecated. Returns the text located inside the region bounded by the left, bottom, right and
top parameters. If multiple lines are found, they are separated by a CR-LF pair.
Page 207