Bind to a screen component.
A Message which is described to the desired screen component.
A IModuleComponentBinder interface to receive information as the screen component is bound and unbound.
Return true if the request has been operated successfully, otherwise false.
Bind to a PiP screen component of desired module package.
A Message of the desired screen component.
A caller's HTMLElement that is contains the desired screen component.
A IModuleComponentBinder interface to receive information as the screen component is bound and unbound.
Return true if the request has been operated successfully, otherwise false.
Start a screen component of desired module package. The screen component will be display on a new screen. If the screen component already started, then the screen that contains the screen will be focused. Only a context which has a system permission could use Message.CATEGORY_FULL_SCREEN or Message.CATEGORY_POPUP_SCREEN.
Return
Start a PiP screen component as PiP (Picture-in-Picture) of desired module package. The screen component will be appended to caller's HTMLElement. You can only append a screen component which is defined as Message.CATEGORY_PIP_SCREEN in manifest.json - 'screens'.
The Message which is described about desired screen component.
A caller's HTMLElement that is destination to append a screen component.
Return
Close a screen component. If it doesn't have system permission, then module is able to stop only its screen component.
A module's IModulePackageInfo.
A target screen's IModuleComponentInfo.
A target screen's ScreenType (default=ScreenType.TAB). Only a context which has a system permission could set this parameter.
Return
Stop a PiP screen component which has been started as PiP of desired module package. The screen component will be removed from caller's HTMLElement. You can only remove a screen component which is defined as Message.CATEGORY_PIP_SCREEN in manifest.json - 'screens'.
The Message which is described about desired screen component.
A caller's HTMLElement that is contains the desired screen component.
Return
Unbind from a screen component.
A Message previously supplied to bindModuleScreen.
A IModuleComponentBinder interface previously supplied to bindModuleScreen.
Return true if the request has been operated successfully, otherwise false.
Unbind from a PiP screen component.
A Message previously supplied to bindPipModuleScreen.
A caller's HTMLElement that is contains the desired screen component.
A IModuleComponentBinder interface previously supplied to bindPipModuleScreen.
Return true if the request has been operated successfully, otherwise false.
Generated using TypeDoc
System manager for managing module's screen component. Through this you can run module's screen component.
1