PageExtensionBasePageCommand Method |
Fired on the page extensions when a page command (toolbar button, action menu) is clicked.
The command is first fired via a
MapperCommand event. If the result
of that event is
Continue this event is then fired. This allows for extensions
attached to a page having multiple mappers associated (e.g. a
IConsoleTemplate)
to have a single extension on the page handle the event regardless of which
IMapper is
current.
See also
PageCommand, the underlying raw event.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax protected virtual void PageCommand(
Object page,
EAPCommandEventArgs e
)
Protected Overridable Sub PageCommand (
page As Object,
e As EAPCommandEventArgs
)
Parameters
- page
- Type: SystemObject
The page firing the event. - e
- Type: NetQuarryEAPCommandEventArgs
The event args.
See Also