Creates a new valid Bookmark with given title in the
specified document.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public static Bookmark Create(
PDFDoc doc,
string text
)
Public Shared Function Create (
doc As PDFDoc,
text As String
) As Bookmark
public:
static Bookmark^ Create(
[InAttribute] PDFDoc^ doc,
[InAttribute] String^ text
)
pdftron.PDF.Bookmark.Create = function(doc, text);
Parameters
- doc
- Type: pdftron.PDFPDFDoc
The document in which a Bookmark is to be created.
- text
- Type: SystemString
The title string value of the new Bookmark.
Return Value
Type:
Bookmark The new Bookmark.
Remarks The new Bookmark is not linked to the outline tree.
Use AddChild()/AddNext()/AddPrev() methods in order to link the Bookmark
to the outline tree
See Also