 | PdfiumFPDFTextObj_GetCharWidth Method |
Get the width of specified character
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FPDFTextObj_GetCharWidth(
IntPtr textObject,
int charcode,
out float width
)
Public Shared Sub FPDFTextObj_GetCharWidth (
textObject As IntPtr,
charcode As Integer,
<OutAttribute> ByRef width As Single
)
public:
static void FPDFTextObj_GetCharWidth(
IntPtr textObject,
int charcode,
[OutAttribute] float% width
)
static member FPDFTextObj_GetCharWidth :
textObject : IntPtr *
charcode : int *
width : float32 byref -> unit
public static void FPDFTextObj_GetCharWidth(
IntPtr textObject,
int charcode,
/** @attribute OutAttribute */ /** @ref */float width
)
Patagames.Pdf.Pdfium.FPDFTextObj_GetCharWidth = function(textObject, charcode, width);
Parameters
- textObject IntPtr
- Handle to text object returned by FPDFPageObj_Create(PageObjectTypes)
- charcode Int32
- Character code the width of which is necessary to obtain.
- width Single
- Pointer to a float value receiving the width.
See Also