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

HeaderValuesBase() protected method

Initialize a new instance of the HeaderValuesBase class.
protected HeaderValuesBase ( NeedPaintHandler needPaint ) : System
needPaint NeedPaintHandler Delegate for notifying paint requests.
return System
        protected HeaderValuesBase(NeedPaintHandler needPaint)
        {
            // Store the provided paint notification delegate
            NeedPaint = needPaint;

            // Set initial values to the default
            _image = GetImageDefault();
            _transparent = Color.Empty;
            _heading = GetHeadingDefault();
            _description = GetDescriptionDefault();
        }