Event | +--CancelEventpublic class CancelEvent
Represents an event fired by components to enable you to cancel a particular operation. The cancel field lets you specify true or false as to whether the event should be cancelled. [true means cancel, false means don't]
Fields
Name | Description |
---|---|
cancel | Indicates, on return, whether or not the operation should be cancelled or not. |
Constructors
Name | Description |
---|---|
CancelEvent(boolean cancel) | Creates a CancelEvent object. |
CancelEvent(boolean cancel) | Creates a new CancelEvent object. |
Creates a CancelEvent object.
Creates a new CancelEvent object. The default value for the cancel field is false.