ComponentFactory.Krypton.Toolkit.KryptonCheckButton.CreateButtonValues C# (CSharp) Method

CreateButtonValues() protected method

Creates a values storage object appropriate for control.
protected CreateButtonValues ( NeedPaintHandler needPaint ) : ButtonValues
needPaint NeedPaintHandler Delegate for notifying paint requests.
return ButtonValues
        protected override ButtonValues CreateButtonValues(NeedPaintHandler needPaint)
        {
            // Create a version of button values with checked entries
            _checkedValues = new CheckButtonValues(needPaint);
            return _checkedValues;
        }