 | PdfPageGetControlAtPoint Method |
Get the field's widget at specified position.
Namespace: Patagames.Pdf.NetAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 5.1.3
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 Single
- X position in PDF "user space".
- y Single
- Y position in PDF "user space".
- zOrder Int32
- The z order of found widget
Return Value
PdfControlReturn
PdfControl object; null indicates no widget.
See Also