ComponentFactory.Krypton.Toolkit.PaletteBackInheritNode.GetBackColor1 C# (CSharp) Method

GetBackColor1() public method

Gets the first background color.
public GetBackColor1 ( PaletteState state ) : Color
state PaletteState Palette value should be applicable to this state.
return Color
        public override Color GetBackColor1(PaletteState state)
        {
            if ((TreeNode != null) && (TreeNode.BackColor != Color.Empty))
                return TreeNode.BackColor;
            else
                return _inherit.GetBackColor1(state);
        }