ActionCreateGoto Method (Destination) |
Creates a new 'GoTo'action. GoTo action takes the user to the
specified 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(
Destination dest
)
Public Shared Function CreateGoto (
dest As Destination
) As Action
public:
static Action^ CreateGoto(
[InAttribute] Destination^ dest
)
pdftron.PDF.Action.CreateGoto = function(dest);
Parameters
- dest
- Type: pdftron.PDFDestination
A Destination for the new Action.
Return Value
Type:
Action the action
Remarks This method can only be used for destinations in the same
document as the source document. For cross-document links use
Action::CreateGotoRemote().
See Also