Create a new URI action. The URL action is typically resolved by opening a URL in
the default web browser.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public static Action CreateURI(
SDFDoc doc,
string uri
)
Public Shared Function CreateURI (
doc As SDFDoc,
uri As String
) As Action
public:
static Action^ CreateURI(
[InAttribute] SDFDoc^ doc,
[InAttribute] String^ uri
)
pdftron.PDF.Action.CreateURI = function(doc, uri);
Parameters
- doc
- Type: pdftron.SDFSDFDoc
The document in which to create the action.
- uri
- Type: SystemString
The uniform resource identifier to resolve, encoded in 7-bit ASCII.
A uniform resource identifier (URI) is a string that identifies (resolves to) a resource
on the Internet'typically a file that is the destination of a hypertext link, although
it can also resolve to a query or other entity. (URIs are described in Internet RFC 2396,
Uniform Resource Identifiers (URI).
Return Value
Type:
Action the action
See Also