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

GetBorderGraphicsHint() public method

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