 | PdfiumFPDFTextObj_GetPos Method |
Get location of the specified text object
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FPDFTextObj_GetPos(
IntPtr textObject,
out float x,
out float y
)
Public Shared Sub FPDFTextObj_GetPos (
textObject As IntPtr,
<OutAttribute> ByRef x As Single,
<OutAttribute> ByRef y As Single
)
public:
static void FPDFTextObj_GetPos(
IntPtr textObject,
[OutAttribute] float% x,
[OutAttribute] float% y
)
static member FPDFTextObj_GetPos :
textObject : IntPtr *
x : float32 byref *
y : float32 byref -> unit
public static void FPDFTextObj_GetPos(
IntPtr textObject,
/** @attribute OutAttribute */ /** @ref */float x,
/** @attribute OutAttribute */ /** @ref */float y
)
Patagames.Pdf.Pdfium.FPDFTextObj_GetPos = function(textObject, x, y);
Parameters
- textObject IntPtr
- Handle to text object returned by FPDFPageObj_Create(PageObjectTypes)
- x Single
- Pointer to a float value receiving the X coordinate of the text object.
- y Single
- Pointer to a float value receiving the Y coordinate of the text object.
See Also