ComponentFactory.Krypton.Ribbon.KryptonRibbonGroupCheckBox.KryptonRibbonGroupCheckBox C# (CSharp) Method

KryptonRibbonGroupCheckBox() public method

Initialise a new instance of the KryptonRibbonGroupCheckBox class.
public KryptonRibbonGroupCheckBox ( ) : System
return System
        public KryptonRibbonGroupCheckBox()
        {
            // Default fields
            _enabled = true;
            _visible = true;
            _checked = false;
            _threeState = false;
            _checkState = CheckState.Unchecked;
            _autoCheck = true;
            _shortcutKeys = Keys.None;
            _textLine1 = "CheckBox";
            _textLine2 = string.Empty;
            _keyTip = "C";
            _itemSizeMax = GroupItemSize.Large;
            _itemSizeMin = GroupItemSize.Small;
            _itemSizeCurrent = GroupItemSize.Large;
            _toolTipImageTransparentColor = Color.Empty;
            _toolTipTitle = string.Empty;
            _toolTipBody = string.Empty;
            _toolTipStyle = LabelStyle.SuperTip;
        }