 | PdfPageGetControlAtPoint Method |
Get the field's widget at specified position.
Namespace:
Patagames.Pdf.Net
Assemblies:
Patagames.Pdf.Xamarin.iOS (in Patagames.Pdf.Xamarin.iOS.dll) Version: 4.81.2704
Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.81.2704
Syntaxpublic PdfControl GetControlAtPoint(
float x,
float y,
out int zOrder
)
Public Function GetControlAtPoint (
x As Single,
y As Single,
<OutAttribute> ByRef zOrder As Integer
) As PdfControl
public:
PdfControl^ GetControlAtPoint(
float x,
float y,
[OutAttribute] int% zOrder
)
member GetControlAtPoint :
x : float32 *
y : float32 *
zOrder : int byref -> PdfControl
public PdfControl GetControlAtPoint(
float x,
float y,
/** @attribute OutAttribute */ /** @ref */int zOrder
)
function GetControlAtPoint(x, y, zOrder);
Parameters
- x
- Type: SystemSingle
X position in PDF "user space". - y
- Type: SystemSingle
Y position in PDF "user space". - zOrder
- Type: SystemInt32
The z order of found widget
Return Value
Type:
PdfControlReturn
PdfControl object; null indicates no widget.
See Also