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

GetBorderImageStyle() public method

Gets the border image style.
public GetBorderImageStyle ( PaletteState state ) : PaletteImageStyle
state PaletteState Palette value should be applicable to this state.
return PaletteImageStyle
        public PaletteImageStyle GetBorderImageStyle(PaletteState state)
        {
            if (ImageStyle != PaletteImageStyle.Inherit)
                return ImageStyle;
            else
                return _inherit.GetBorderImageStyle(state);
        }