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

GetCheckBoxImage() public abstract method

Gets a check box image appropriate for the provided state.
public abstract 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 abstract Image GetCheckBoxImage(bool enabled, CheckState checkState, bool tracking, bool pressed);
PaletteBase