 | PdfTextObjectGetItemInfo Method |
Gets item information
Namespace: Patagames.Pdf.NetAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic void GetItemInfo(
int index,
out int charCode,
out float originX,
out float originY
)
Public Sub GetItemInfo (
index As Integer,
<OutAttribute> ByRef charCode As Integer,
<OutAttribute> ByRef originX As Single,
<OutAttribute> ByRef originY As Single
)
public:
void GetItemInfo(
int index,
[OutAttribute] int% charCode,
[OutAttribute] float% originX,
[OutAttribute] float% originY
)
member GetItemInfo :
index : int *
charCode : int byref *
originX : float32 byref *
originY : float32 byref -> unit
public void GetItemInfo(
int index,
/** @attribute OutAttribute */ /** @ref */int charCode,
/** @attribute OutAttribute */ /** @ref */float originX,
/** @attribute OutAttribute */ /** @ref */float originY
)
function GetItemInfo(index, charCode, originX, originY);
Parameters
- index Int32
- The index of the item to get the information.
- 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