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

GetBorderDraw() public method

Gets the actual border draw value.
public GetBorderDraw ( PaletteState state ) : InheritBool
state PaletteState Palette value should be applicable to this state.
return InheritBool
        public InheritBool GetBorderDraw(PaletteState state)
        {
            if (Draw != InheritBool.Inherit)
                return Draw;
            else
                return _inherit.GetBorderDraw(state);
        }