ComponentEvent

data class ComponentEvent(val action: String? = null, val bindingEvent: String? = null, val parameters: ComponentActionParameters? = null)

Constructors

Link copied to clipboard
constructor(action: String? = null, bindingEvent: String? = null, parameters: ComponentActionParameters? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val action: String? = null

The action to perform when a specific event is raised.

Link copied to clipboard
val bindingEvent: String? = null

Binds an event to an action on a component. When you specify a bindingEvent , the event is called when the action is performed.

Link copied to clipboard

Describes information about the action.