 | PdfiumFPDFTextObj_GetItemInfo Method |
Get item information
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FPDFTextObj_GetItemInfo(
IntPtr textObject,
int index,
out int charCode,
out float originX,
out float originY
)
Public Shared Sub FPDFTextObj_GetItemInfo (
textObject As IntPtr,
index As Integer,
<OutAttribute> ByRef charCode As Integer,
<OutAttribute> ByRef originX As Single,
<OutAttribute> ByRef originY As Single
)
public:
static void FPDFTextObj_GetItemInfo(
IntPtr textObject,
int index,
[OutAttribute] int% charCode,
[OutAttribute] float% originX,
[OutAttribute] float% originY
)
static member FPDFTextObj_GetItemInfo :
textObject : IntPtr *
index : int *
charCode : int byref *
originX : float32 byref *
originY : float32 byref -> unit
public static void FPDFTextObj_GetItemInfo(
IntPtr textObject,
int index,
/** @attribute OutAttribute */ /** @ref */int charCode,
/** @attribute OutAttribute */ /** @ref */float originX,
/** @attribute OutAttribute */ /** @ref */float originY
)
Patagames.Pdf.Pdfium.FPDFTextObj_GetItemInfo = function(textObject, index, charCode, originX, originY);
Parameters
- textObject IntPtr
- Handle to text object returned by FPDFPageObj_Create(PageObjectTypes)
- index Int32
- The index of the item to get the information.
- charCode Int32
- Pointer to a int value receiving the item information.
- originX Single
- Pointer to a float value receiving the physical offset from the start to the specified item by horizontal
- originY Single
- Pointer to a float value receiving the physical offset from the start to the specified item by vertical
See Also