Home | History | Annotate | Download | only in images

Lines Matching full:bookmark

57 //		* Bookmark Information
1545 **** Bookmark Information
1552 // Get first child of a bookmark item, or first top level bookmark item
1555 // parent - Handle to the parent bookmark.
1557 // bookmark - Receiving handle to the first child or top level bookmark item.
1558 // If result is NULL, then bookmark not found.
1563 FPDFEMB_BOOKMARK* bookmark);
1566 // Get next sibling of a bookmark item
1569 // bookmark - Handle to the bookmark
1571 // If result is NULL, then this is the last bookmark in this level.
1575 FPDFEMB_RESULT FPDFEMB_Bookmark_GetNextSibling(FPDFEMB_DOCUMENT document, FPDFEMB_BOOKMARK bookmark,
1579 // Get title of a bookmark
1581 // bookmark - Handle to the bookmark
1593 // number of bytes required to store the bookmark title (including the two-
1600 FPDFEMB_RESULT FPDFEMB_Bookmark_GetTitle(FPDFEMB_BOOKMARK bookmark, void* buffer, unsigned int* bufsize);
1603 // Get page number of a bookmark pointing to
1606 // bookmark - Handle to the bookmark
1607 // page - Receiving the page number. -1 if this bookmark doesn't actually
1612 // Some bookmark might not point to a page, some bookmark might have more than one destination
1613 // (action), for detailed information about a bookmark, you should call FPDFEMB_Bookmark_GetAction.
1615 FPDFEMB_RESULT FPDFEMB_Bookmark_GetPage(FPDFEMB_DOCUMENT document, FPDFEMB_BOOKMARK bookmark, int* page);
1618 // Get action(s) associated with a particular bookmark
1621 // bookmark - Handle to the bookmark
1626 FPDFEMB_RESULT FPDFEMB_Bookmark_GetAction(FPDFEMB_DOCUMENT document, FPDFEMB_BOOKMARK bookmark, FPDFEMB_ACTION* action);