property accHighContrast

(r/o) bool accHighContrast;

Typ

Zugriff

This property returns true if high contrast mode is on, else false.
function accInfo()
{
    if (appUtils.accHighContrast)
        shell.print("High Contrast is ON");
    else
        shell.print("High Contrast is OFF");
}