ScreenSize Object
The ScreenSize object provides screen size information.
Members Table
The following table lists the members provided by the ScreenSize object.
|
Properties |
Description |
Height |
Screen height. |
Width |
Screen width. |
|
Remarks
This object is available through the UserInterface object.
Use the ScreenSize object to determine the screen dimension.
Examples
The following example displays the screen width.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteCafe.UserInterface.ScreenSize.Width);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top