 | PdfiumFPDF_GetNamedDest Method |
Get the specified named destinations of the PDF document by index.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static IntPtr FPDF_GetNamedDest(
IntPtr document,
int index,
out string name
)
Public Shared Function FPDF_GetNamedDest (
document As IntPtr,
index As Integer,
<OutAttribute> ByRef name As String
) As IntPtr
public:
static IntPtr FPDF_GetNamedDest(
IntPtr document,
int index,
[OutAttribute] String^% name
)
static member FPDF_GetNamedDest :
document : IntPtr *
index : int *
name : string byref -> IntPtr
public static IntPtr FPDF_GetNamedDest(
IntPtr document,
int index,
/** @attribute OutAttribute */ /** @ref */String name
)
Patagames.Pdf.Pdfium.FPDF_GetNamedDest = function(document, index, name);
Parameters
- document IntPtr
- Handle to a document
- index Int32
- The index of named destination.
- name String
- Retrieve the name of named destinations
Return Value
IntPtrThe destination Handle to a named destination, or IntPtr.Zero if no named destination corresponding to |index|.
See Also