private bool getNormalResponsiveValue(UserSettings.Constants _value)
        {
            bool rc;

            if (_value == UserSettings.Constants.NORMAL)
            {
                rc = true;
            }
            else
            {
                rc = false;
            }

            return(rc);
        }
        private bool getLeverZeroBoolean(UserSettings.Constants _value)
        {
            bool rc;

            if (_value == UserSettings.Constants.LEVER)
            {
                rc = true;
            }
            else
            {
                rc = false;
            }

            return(rc);
        }
        private bool getOnOffValueReverse(UserSettings.Constants _value)
        {
            bool rc;

            if (_value == UserSettings.Constants.ON)
            {
                rc = false;
            }
            else
            {
                rc = true;
            }

            return(rc);
        }