ComponentFactory.Krypton.Toolkit.PaletteSparkleBase.GetDropDownButtonImage C# (CSharp) Method

GetDropDownButtonImage() public method

Gets a drop down button image appropriate for the provided state.
public GetDropDownButtonImage ( PaletteState state ) : Image
state PaletteState PaletteState for which image is required.
return Image
        public override Image GetDropDownButtonImage(PaletteState state)
        {
            if (state == PaletteState.Disabled)
                return _disabledDropDown;
            else
                return _sparkleDropDownOutlineButton;
        }
PaletteSparkleBase