 | PdfiumFPDFTextObj_SetTextRaw Method |
Low-level function to insert ANSI/Unicode string into text object
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FPDFTextObj_SetTextRaw(
IntPtr textObject,
int countChars,
int[] chars,
float[] kernings
)
Public Shared Sub FPDFTextObj_SetTextRaw (
textObject As IntPtr,
countChars As Integer,
chars As Integer(),
kernings As Single()
)
public:
static void FPDFTextObj_SetTextRaw(
IntPtr textObject,
int countChars,
array<int>^ chars,
array<float>^ kernings
)
static member FPDFTextObj_SetTextRaw :
textObject : IntPtr *
countChars : int *
chars : int[] *
kernings : float32[] -> unit
public static void FPDFTextObj_SetTextRaw(
IntPtr textObject,
int countChars,
int[] chars,
float[] kernings
)
Patagames.Pdf.Pdfium.FPDFTextObj_SetTextRaw = function(textObject, countChars, chars, kernings);
Parameters
- textObject IntPtr
- Handle to text object returned by FPDFPageObj_Create(PageObjectTypes)
- countChars Int32
- The number of characters in the text to insert.
- chars Int32
- A four-byte array containing the unicode characters to insert into text object.
- kernings Single
- Array containing the kernings
See Also