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