ComponentFactory.Krypton.Toolkit.PaletteRedirect.GetCheckBoxImage C# (CSharp) Method

GetCheckBoxImage() public method

Gets a check box image appropriate for the provided state.
public GetCheckBoxImage ( bool enabled, CheckState checkState, bool tracking, bool pressed ) : Image
enabled bool Is the check box enabled.
checkState CheckState Is the check box checked/unchecked/indeterminate.
tracking bool Is the check box being hot tracked.
pressed bool Is the check box being pressed.
return Image
        public virtual Image GetCheckBoxImage(bool enabled, CheckState checkState, bool tracking, bool pressed)
        {
            return _target.GetCheckBoxImage(enabled, checkState, tracking, pressed);
        }
PaletteRedirect