ComponentFactory.Krypton.Toolkit.PaletteBorder.GetBorderColor2 C# (CSharp) Method

GetBorderColor2() public method

Gets the second border color.
public GetBorderColor2 ( PaletteState state ) : Color
state PaletteState Palette value should be applicable to this state.
return Color
        public Color GetBorderColor2(PaletteState state)
        {
            if (Color2 != Color.Empty)
                return Color2;
            else
                return _inherit.GetBorderColor2(state);
        }