 | NamedDestinationCreate Method |
Create a named destination
The returned object is not yet used on any page, but it is associated with the given target document.
Namespace: PdfTools.Toolbox.Pdf.NavigationAssembly: PdfTools.Toolbox (in PdfTools.Toolbox.dll) Version: 1.11.0+eb7160cc6b920e36fb1ea2abe5f76809067c0c55
Syntaxpublic static NamedDestination Create(
Document targetDocument,
string name,
DirectDestination target
)
Parameters
- targetDocument Document
-
The output document with which the returned object is associated
- name String
-
The name by which the destination is referred to.
- target DirectDestination
-
The target destination
Return Value
NamedDestination
The newly created named destination.
Exceptions| Exception | Condition |
|---|
| ArgumentException | if the targetDocument argument has already been closed |
| ArgumentException | if the targetDocument argument is read-only |
| ArgumentException | if the document associated with the target argument has already been closed |
| ArgumentException | if the target argument belongs to a different document |
| ArgumentNullException | if targetDocument is . |
| ArgumentNullException | if name is . |
| ArgumentNullException | if target is . |
See Also