The "kebab-case" classname of the emitter that raised the event.
OpenFin.Frame is represented as iframe
.
The type of event that was raised. Equal to the typename of the event payload in "kebab case".
Guaranteed to be unique within each topic, but can be repeated between topics (e.g. WebContentsEvents.CrashedEvent and ApplicationEvents.CrashedEvent).
Generated when a View is shown.
Remarks
An OpenFin View's
shown
event is only emitted when specific View APIs are called. This event can fire when calling:view.show()
orview.showAt()
- If a View is previously hidden, ashown
event will be fired.view.attach()
- If a View is hidden and attached to a new Window, it will be shown and theshown
event will be fired.view.create()
- A Viewshown
event will be fired. (Internally theattach
method is called when calling thecreate
method, which fires theshown
event.)