Class DispatchCancelArgs
- class ooodev.events.args.dispatch_cancel_args.DispatchCancelArgs(source, cmd, cancel=False)[source]
Bases:
AbstractDispatchCancelArgs
Dispatch Cancel Args
- Parameters:
source (Any) –
cmd (str) –
cancel (bool) –
- __init__(source, cmd, cancel=False)
Constructor
- Parameters:
source (Any) – Event Source
cmd (str) – Event Dispatch Command
cancel (bool, optional) – Cancel value. Defaults to False.
- Return type:
None
- static from_args(args)[source]
Gets a new instance from existing instance
- Parameters:
args (AbstractDispatchCancelArgs) – Existing Instance
- Returns:
args
- Return type:
- get(key, default=<object object>)
Gets user data from event.
- Parameters:
key (str) – Key used to store data
default (Any, optional) – Default value to return if
key
is not found.
- Returns:
Data for
key
if found; Otherwise, ifdefault
is set thendefault
.- Return type:
Any
New in version 0.9.0.
- has(key)
Gets if a key exist in the instance
- Parameters:
key (str) – key
- Returns:
True
if key exist; OtherwiseFalse
- Return type:
bool
New in version 0.9.0.
- remove(key)
Removes key value pair from instance
- Parameters:
key (str) – key
- Returns:
True
if key was found and removed; Otherwise,False
- Return type:
bool
New in version 0.9.0.
- set(key, value, allow_overwrite=True)
Sets a key value pair for event instance.
- Parameters:
key (str) – Key
value (Any) – Value
allow_overwrite (bool, optional) – If
True
and akey
already exist then itsvalue
will be over written; Otherwisevalue
will not be over written. Defaults toTrue
.
- Returns:
True
if values is written; Otherwise,False
- Return type:
bool
New in version 0.9.0.
- cancel: bool
Gets/Sets cancel value
- cmd: str
Gets/Sets the dispatch cmd of the event
- event_data: Any
Gets/Sets any extra data associated with the event
- property event_name: str
Gets the event name for these args
- Return type:
str
- property event_source: Any | None
Gets the event source for these args
- Return type:
Any | None
- handled: bool
Get/Set Handled value. Typically if set to
True
thencancel
is ignored.
- source: Any
Gets/Sets Event source