ComponentFactory.Krypton.Toolkit.PaletteBackInheritForced.GetBackGraphicsHint C# (CSharp) Method

GetBackGraphicsHint() public method

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