ComponentFactory.Krypton.Toolkit.PaletteDoubleMetric.GetMetricInt C# (CSharp) Method

GetMetricInt() public method

Gets an integer metric value.
public GetMetricInt ( PaletteState state, PaletteMetricInt metric ) : int
state PaletteState Palette value should be applicable to this state.
metric PaletteMetricInt Requested metric.
return int
        public virtual int GetMetricInt(PaletteState state, PaletteMetricInt metric)
        {
            // Always pass onto the inheritance
            return _inherit.GetMetricInt(state, metric);
        }