The goog.ui.equation.PaletteEvent Class

goog.ui.equation.PaletteEvent
> goog.events.Event

goog.ui.equation.PaletteEvent(type, palette, opt_target)

The event that palettes dispatches.

type {string}
Type of the event.
palette {goog.ui.equation.Palette}
The palette that the event is fired on.
opt_target {Element=}
The optional target of the event.

The goog.ui.equation.PaletteEvent.Type Enum

The type of events that can be fired on palettes. … more

.defaultPrevented {boolean}

Inherited from goog.events.Event .

Whether the default action has been prevented. This is a property to match the W3C specification at {@link http://www.w3.org/TR/DOM-Level-3-Events/#events-event-type-defaultPrevented}. Must be treated as read-only outside the class.

.getPalette()

Returns the palette that this event is fired from.

returns {goog.ui.equation.Palette}
The palette this event is fired from.

.preventDefault()

Inherited from goog.events.Event .

Prevents the default action, for example a link redirecting to a url.

.propagationStopped_ {boolean}

Inherited from goog.events.Event .

Whether to cancel the event in internal capture/bubble processing for IE.

@suppress
{underscore} Technically public, but referencing this outside this package is strongly discouraged.

.returnValue_ {boolean}

Inherited from goog.events.Event .

Return value for in internal capture/bubble processing for IE.

@suppress
{underscore} Technically public, but referencing this outside this package is strongly discouraged.

.stopPropagation()

Inherited from goog.events.Event .

Stops event propagation.