ComponentFactory.Krypton.Toolkit.KryptonPaletteButtonSpecTyped.KryptonPaletteButtonSpecTyped C# (CSharp) Method

KryptonPaletteButtonSpecTyped() private method

Initialize a new instance of the KryptonPaletteButtonSpecCommon class.
private KryptonPaletteButtonSpecTyped ( PaletteRedirect redirector ) : System
redirector PaletteRedirect Palette redirector for sourcing inherited values.
return System
        internal KryptonPaletteButtonSpecTyped(PaletteRedirect redirector)
            : base(redirector)
        {
            _image = null;
            _text = string.Empty;
            _extraText = string.Empty;
            _toolTipTitle = string.Empty;
            _colorMap = Color.Empty;
            _allowInheritImage = true;
            _allowInheritText = true;
            _allowInheritExtraText = true;
            _allowInheritToolTipTitle = true;
            _imageStates = new CheckButtonImageStates();
            _imageStates.NeedPaint = new NeedPaintHandler(OnImageStateChanged);
        }