FPDF_GetNamedDestByName method
Function: FPDF_GetNamedDestByName Get a the destination handle for the given name. Parameters: document - Handle to the loaded document. name - The name of a destination. Return value: The handle to the destination.
Implementation
FPDF_DEST FPDF_GetNamedDestByName(
FPDF_DOCUMENT document,
FPDF_BYTESTRING name,
) {
return _FPDF_GetNamedDestByName(document, name);
}