Habanero.Faces.Base.DateTimePickerManager.ApplyBlankFormat C# (CSharp) Method

ApplyBlankFormat() private method

private ApplyBlankFormat ( ) : bool
return bool
        private bool ApplyBlankFormat()
        {
            if (IsNull()) return false;
            if (!CheckBoxVisible)
            {
                _nullDisplayBox.Visible = true;
            } else
            {
                CheckBoxChecked = false;
            }
            _isNull = true;
            return true;
        }