ComponentFactory.Krypton.Toolkit.PaletteContent.GetContentDrawFocus C# (CSharp) Method

GetContentDrawFocus() public method

Gets the actual content draw with focus value.
public GetContentDrawFocus ( PaletteState state ) : InheritBool
state PaletteState Palette value should be applicable to this state.
return InheritBool
        public InheritBool GetContentDrawFocus(PaletteState state)
        {
            if (DrawFocus != InheritBool.Inherit)
                return DrawFocus;
            else
                return _inherit.GetContentDrawFocus(state);
        }