This section of the API relates to information about pages.

interface PageModelApi {
    events: PageEventsApi;
    onParentPageEnter(pageListener: ((page: ParentPageModelApi) => void)): (() => void);
}

Properties

Methods

Properties

Methods

  • Invokes the listener whenever a parent page (object, workflow gather information, relationship attributes, and so on) is accessed.

    Parameters

    Returns (() => void)

    A function that removes the listener.

      • (): void
      • Returns void