Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IApplicationWindow

Instance of a Window created by IWindowService. Provides properties, methods and events to manage a single popup Window.

Hierarchy

Index

Properties

isMain

isMain: boolean

Indicates if this window is running Review Interface application.

isOpen

isOpen: boolean

Whether or not this window is open

isRelativityWindow

isRelativityWindow: boolean

Indicates if this window is running Relativity application.

name

name: string

Unique Identifier for the Window.

Optional window

window: Window

The window reference containing a DOM document.

Methods

close

  • close(): boolean
  • Closes this window if it's open.

    Returns boolean

    true if window was closed successfully.

off

  • Unregisters an event handler

    Parameters

    • eventType: ApplicationWindowEventType

      Event to unregister from

    • Optional handler: EventHandler

      Event handler function. If not passed in, it removes all event handlers.

    • Optional once: boolean

      Boolean indicating if the event handler was registered as a one-time event handler (Defaults to false)

    Returns void

on

once