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

GetBorderGraphicsHint() public method

Gets the actual border graphics hint value.
public GetBorderGraphicsHint ( PaletteState state ) : PaletteGraphicsHint
state PaletteState Palette value should be applicable to this state.
return PaletteGraphicsHint
        public PaletteGraphicsHint GetBorderGraphicsHint(PaletteState state)
        {
            if (GraphicsHint != PaletteGraphicsHint.Inherit)
                return GraphicsHint;
            else
                return _inherit.GetBorderGraphicsHint(state);
        }