Event type sent for command events.
Event | Description | Trickles down | Bubbles up | Cancellable |
---|---|---|---|---|
ValidateCommandEvent | IMGUI sends this event while it determines whether the command will be handled by an element in the panel. | ✔ | ✔ | ✔ |
ExecuteCommandEvent | IMGUI sends this event when an element in the panel should execute a command. | ✔ | ✔ | ✔ |
target
: The element with keyboard focus. This value is null
if no element has focus.
commandName
: The command to validate or execute.
IMGUI sends this event while it determines whether the command will be handled by an element in the panel.
IMGUI sends this event when an element in the panel should execute a command.