[]
Represents an action that performs some viewer application action such as go to next or previous page, etc.
new ActionNamed(om, name?): ActionNamed;
Creates a new ActionNamed.
ObjectManager that controls the lifetime of the ActionNamed.
string
The action name.
ActionNamed
ActionBase.constructor
new ActionNamed(name?): ActionNamed;
Creates a new ActionNamed.
string
The action name.
ActionNamed
ActionBase.constructor
get id(): number;
Gets the reference to the object.
number
get name(): string;
Gets or sets the name of action. The most usefull names: NextPage, PrevPage, FirstPage, LastPage
string
set name(value): void;
Gets or sets the name of action. The most usefull names: NextPage, PrevPage, FirstPage, LastPage
string
void
get om(): ObjectManager;
Gets the owner ObjectManager instance.
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