[]
Represents an action that causes navigation to a specified URI.
new ActionURI(om, uri?): ActionURI;
Creates a new ActionURI.
ObjectManager that controls the lifetime of the ActionURI.
string
The URI to navigate to.
ActionURI
ActionBase.constructor
new ActionURI(uri?): ActionURI;
Creates a new ActionURI.
string
The URI to navigate to.
ActionURI
ActionBase.constructor
get id(): number;
Gets the reference to the object.
number
get isMap(): boolean;
Gets or sets a value indicating whether to track the mouse position when the URI is resolved.
This property applies only to actions triggered by the user's clicking an annotation; it is ignored for actions associated with OutlineNode or with a PdfDocument#openAction property.
boolean
set isMap(value): void;
Gets or sets a value indicating whether to track the mouse position when the URI is resolved.
This property applies only to actions triggered by the user's clicking an annotation; it is ignored for actions associated with OutlineNode or with a PdfDocument#openAction property.
boolean
void
get om(): ObjectManager;
Gets the owner ObjectManager instance.
get uri(): string;
Gets or sets the URI to navigate.
string
set uri(value): void;
Gets or sets the URI to navigate.
string
void
free(): void;
Detaches the object from the ObjectManager and deallocates its memory, if possible.
void
rebind(omTo): void;
Rebinds the object from the current ObjectManager to the specified one.
The new ObjectManager for the object.
void