ButtonClickingEvent Interface
Represents an event that is emitted when a button is clicked.
export declare interface ButtonClickingEvent extends ViewerEvent
Remarks
This interface defines the structure of the buttonClicking event, which includes a reference to the button that was clicked through the source property.
Fields
source
The button that was clicked.
readonly source: BasicButtonUI;
Field Value
Inherited Fields
| defaultPrevented | Gets a value indicating whether the event's default action has been canceled. (Inherited from ViewerEvent) |
Inherited Methods
| preventDefault | Cancels the event if it is cancelable, without stopping further propagation of the event. (Inherited from ViewerEvent) |