TaskbarVisible Property
The TaskbarVisible property specifies if the taskbar should be shown.
Syntax
SiteKiosk.SiteSkin.TaskbarVisible [=bool]
|
Possible Values
Boolean value that specifies or retrieves if the taskbar should be shown.
|
The property is read/write.
Remarks
The taskbar can only be forced to be invisible. If this property is true, it will be hidden in some situations anyway.
Examples
The following example changes the visibility of the taskbar when the link is clicked.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
sskin = SiteKiosk.SiteSkin;
function switchtb()
{
sskin.TaskbarVisible = !sskin.TaskbarVisible;
}
</SCRIPT>
<a href="javascript:switchtb()">switch taskbar visibility</a>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top