 | PdfTextObjectGetCharInfo(Int32, Int32, Single) Method |
Gets the unicode of a special character in a text object and kerning.
Namespace: Patagames.Pdf.NetAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic void GetCharInfo(
int index,
out int charCode,
out float kerning
)
Public Sub GetCharInfo (
index As Integer,
<OutAttribute> ByRef charCode As Integer,
<OutAttribute> ByRef kerning As Single
)
public:
void GetCharInfo(
int index,
[OutAttribute] int% charCode,
[OutAttribute] float% kerning
)
member GetCharInfo :
index : int *
charCode : int byref *
kerning : float32 byref -> unit
public void GetCharInfo(
int index,
/** @attribute OutAttribute */ /** @ref */int charCode,
/** @attribute OutAttribute */ /** @ref */float kerning
)
function GetCharInfo(index, charCode, kerning);
Parameters
- index Int32
- The index of the character to get the unicode.
- charCode Int32
- Gets an int value that represents the unicode character.
- kerning Single
- Pointer to a float value receiving the kerning
See Also