 | PdfiumFPDFCROSSREF_GetItem Method |
Gets the item from iterator
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static bool FPDFCROSSREF_GetItem(
IntPtr iterator,
out int objNum,
out int position,
out int type,
out int gennum
)
Public Shared Function FPDFCROSSREF_GetItem (
iterator As IntPtr,
<OutAttribute> ByRef objNum As Integer,
<OutAttribute> ByRef position As Integer,
<OutAttribute> ByRef type As Integer,
<OutAttribute> ByRef gennum As Integer
) As Boolean
public:
static bool FPDFCROSSREF_GetItem(
IntPtr iterator,
[OutAttribute] int% objNum,
[OutAttribute] int% position,
[OutAttribute] int% type,
[OutAttribute] int% gennum
)
static member FPDFCROSSREF_GetItem :
iterator : IntPtr *
objNum : int byref *
position : int byref *
type : int byref *
gennum : int byref -> bool
public static boolean FPDFCROSSREF_GetItem(
IntPtr iterator,
/** @attribute OutAttribute */ /** @ref */int objNum,
/** @attribute OutAttribute */ /** @ref */int position,
/** @attribute OutAttribute */ /** @ref */int type,
/** @attribute OutAttribute */ /** @ref */int gennum
)
Patagames.Pdf.Pdfium.FPDFCROSSREF_GetItem = function(iterator, objNum, position, type, gennum);
Parameters
- iterator IntPtr
- Handle to iterator retrived by FPDFCROSSREF_GetItemIterator(IntPtr)\
- objNum Int32
- Object number
- position Int32
- Position in PDF body in bytes
- type Int32
- Type
- gennum Int32
- Generation number
Return Value
BooleanTrue if the item was retrieved or false if no more items or eny error has occured.
See Also