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

GetContentImageColorMap() public method

Gets the image color to remap into another color.
public GetContentImageColorMap ( PaletteState state ) : Color
state PaletteState Palette value should be applicable to this state.
return Color
        public Color GetContentImageColorMap(PaletteState state)
        {
            if (_image.ImageColorMap != Color.Empty)
                return _image.ImageColorMap;
            else
                return _inherit.GetContentImageColorMap(state);
        }