Interface ControlPageEventsApi

Equivalent to PageEventsApiBase with the exception that event hooks will be scoped to the page on which the calling control resides.

interface ControlPageEventsApi {
    getPageEvent(eventName: SaveObject): undefined | IPageEvent<IPageEventData>;
    getPageEvent<T>(eventName: string): undefined | IPageEvent<T>;
}

Hierarchy (view full)

Methods

Methods