ActionCreateGoto Method (String, Destination) |
Creates a new 'GoTo' action using a 'Named Destination'. GoTo action
takes the user to the specified 'Named Destination' view located in the
same document.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public static Action CreateGoto(
string key,
Destination dest
)
Public Shared Function CreateGoto (
key As String,
dest As Destination
) As Action
public:
static Action^ CreateGoto(
[InAttribute] String^ key,
[InAttribute] Destination^ dest
)
pdftron.PDF.Action.CreateGoto = function(key, dest);
Parameters
- key
- Type: SystemString
- a string buffer representing the destination name. The named
destination will be stored in document's '/Dest' SDF::NameTree.
- dest
- Type: pdftron.PDFDestination
The explicit destination used to create the named destination.
Return Value
Type:
Action the action
See Also