PDFViewCtrlSelect Method (Double, Double, Int32, Double, Double, Int32) |
Selects text using structural mode given two points on two pages.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public bool Select(
double x1,
double y1,
int page1,
double x2,
double y2,
int page2
)
Public Function Select (
x1 As Double,
y1 As Double,
page1 As Integer,
x2 As Double,
y2 As Double,
page2 As Integer
) As Boolean
public:
virtual bool Select(
[InAttribute] double x1,
[InAttribute] double y1,
[InAttribute] int page1,
[InAttribute] double x2,
[InAttribute] double y2,
[InAttribute] int page2
) sealed
function Select(x1, y1, page1, x2, y2, page2);
Parameters
- x1
- Type: SystemDouble
x coordinate of the first point
- y1
- Type: SystemDouble
y coordinate of the first point
- page1
- Type: SystemInt32
page number of the first page
- x2
- Type: SystemDouble
x coordinate of the second point
- y2
- Type: SystemDouble
y coordinate of the second point
- page2
- Type: SystemInt32
page number of the second page
Return Value
Type:
Booleantrue if some text was selected, false otherwise.
See Also