 | PdfiumFPDFTextObj_GetCharInfo(IntPtr, Int32, Int32, Single) Method |
Get the unicode of a special character in a text object and kerning.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FPDFTextObj_GetCharInfo(
IntPtr textObject,
int index,
out int charCode,
out float kerning
)
Public Shared Sub FPDFTextObj_GetCharInfo (
textObject As IntPtr,
index As Integer,
<OutAttribute> ByRef charCode As Integer,
<OutAttribute> ByRef kerning As Single
)
public:
static void FPDFTextObj_GetCharInfo(
IntPtr textObject,
int index,
[OutAttribute] int% charCode,
[OutAttribute] float% kerning
)
static member FPDFTextObj_GetCharInfo :
textObject : IntPtr *
index : int *
charCode : int byref *
kerning : float32 byref -> unit
public static void FPDFTextObj_GetCharInfo(
IntPtr textObject,
int index,
/** @attribute OutAttribute */ /** @ref */int charCode,
/** @attribute OutAttribute */ /** @ref */float kerning
)
Patagames.Pdf.Pdfium.FPDFTextObj_GetCharInfo = function(textObject, index, charCode, kerning);
Parameters
- textObject IntPtr
- Handle to text object returned by FPDFPageObj_Create(PageObjectTypes)
- index Int32
- The index of the character to get the unicode.
- charCode Int32
- Pointer to a int value receiving the unicode value.
- kerning Single
- Pointer to a float value receiving the kerning
See Also