PDFViewCtrlSelect Method (Double, Double, Double, Double) |
Selects text within the given region using the current text selection mode.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public bool Select(
double x1,
double y1,
double x2,
double y2
)
Public Function Select (
x1 As Double,
y1 As Double,
x2 As Double,
y2 As Double
) As Boolean
public:
virtual bool Select(
[InAttribute] double x1,
[InAttribute] double y1,
[InAttribute] double x2,
[InAttribute] double y2
) sealed
function Select(x1, y1, x2, y2);
Parameters
- x1
- Type: SystemDouble
x coordinate of the a point
- y1
- Type: SystemDouble
y coordinate of the a point
- x2
- Type: SystemDouble
x coordinate of the opposite corner
- y2
- Type: SystemDouble
y coordinate of the opposite corner
Return Value
Type:
Booleantrue if some text was selected, false otherwise.
See Also