ComponentFactory.Krypton.Toolkit.PaletteDataGridViewContentStates.GetContentDraw C# (CSharp) Method

GetContentDraw() public method

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