Retrieves whether SideShow is supported.
Syntax
bSideShowEnabled = System.Gadget.SideShow.enabled()
Return Value
Boolean that specifies the SideShow support.
true-
SideShow is supported.
false-
SideShow is not supported.
Remarks
Verify that System.Gadget.SideShow.enabled
returns true before using other System.Gadget.SideShow object members.
Example
The following example demonstrates how to determine whether SideShow is supported using enabled.
var sideshowEnabled = System.Gadget.SideShow.enabled();
if (sideshowEnabled)
{
// Do something.
}
Applies To
See Also