ActionCreateGoto Method (Byte, Int32, 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(
byte[] key,
int key_sz,
Destination dest
)
Public Shared Function CreateGoto (
key As Byte(),
key_sz As Integer,
dest As Destination
) As Action
public:
static Action^ CreateGoto(
[InAttribute] array<unsigned char>^ key,
[InAttribute] int key_sz,
[InAttribute] Destination^ dest
)
pdftron.PDF.Action.CreateGoto = function(key, key_sz, dest);
Parameters
- key
- Type: SystemByte
a string buffer representing the destination name. The named
destination will be stored in document's '/Dest' SDF::NameTree.
- key_sz
- Type: SystemInt32
size of the key buffer
- dest
- Type: pdftron.PDFDestination
The explicit destination used to create the named destination.
Return Value
Type:
Action the action
See Also