FPDFBookmark.h
1 #pragma once
2 
3 namespace Foxit
4 {
5  namespace PDF
6  {
14  public enum class BookmarkStatus
15  {
17  NORMAL = 0x00,
19  BOLD = 0x01,
21  ITALIC = 0x02,
23  EXPANDED = 0x04,
24  };
42  public ref class Bookmark sealed
43  {
44  public:
58  Bookmark^ GetFirstChild();
59 
73  Bookmark^ GetNextSibling();
74 
92  Destination^ GetDestination();
93 
107  int32 CountActions();
108 
123  Action^ GetAction(int32 index);
124 
126  property String^ Title;
128  property uint32 Color;
130  property uint32 Status;
131 
136  property int64 pointer;
137  };
138 
139  }
140 }
Show bookmark title as italic text.
Show bookmark title as normal text.
BookmarkStatus
Enumeration for bookmark status.
Definition: FPDFBookmark.h:14
Expand bookmark by default.
Show bookmark title as bold text.
Class to access a PDF bookmark.
Definition: FPDFBookmark.h:42
Class to represent destination data.
Definition: FPDFBase.h:476
Foxit namespace.
Definition: FPDFAnnot.h:3
Class to represent action type and data.
Definition: FPDFBase.h:196

Foxit Corporation