 | PdfiumFPDFFormControl_GetRect Method |
Get bounding rectanghle of specified control
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FPDFFormControl_GetRect(
IntPtr frmControl,
out float left,
out float bottom,
out float right,
out float top
)
Public Shared Sub FPDFFormControl_GetRect (
frmControl As IntPtr,
<OutAttribute> ByRef left As Single,
<OutAttribute> ByRef bottom As Single,
<OutAttribute> ByRef right As Single,
<OutAttribute> ByRef top As Single
)
public:
static void FPDFFormControl_GetRect(
IntPtr frmControl,
[OutAttribute] float% left,
[OutAttribute] float% bottom,
[OutAttribute] float% right,
[OutAttribute] float% top
)
static member FPDFFormControl_GetRect :
frmControl : IntPtr *
left : float32 byref *
bottom : float32 byref *
right : float32 byref *
top : float32 byref -> unit
public static void FPDFFormControl_GetRect(
IntPtr frmControl,
/** @attribute OutAttribute */ /** @ref */float left,
/** @attribute OutAttribute */ /** @ref */float bottom,
/** @attribute OutAttribute */ /** @ref */float right,
/** @attribute OutAttribute */ /** @ref */float top
)
Patagames.Pdf.Pdfium.FPDFFormControl_GetRect = function(frmControl, left, bottom, right, top);
Parameters
- frmControl IntPtr
- Handle to the Control object. Returned by FPDFInterForm_GetControl(IntPtr, Int32, String) function.
- left Single
- The left of the rectangle.
- bottom Single
- The bottom of the rectangle.
- right Single
- The right of the rectangle.
- top Single
- The top of the rectangle.
See Also