SharpMap.Rendering.Thematics.CustomTheme.GetStyle C# (CSharp) Метод

GetStyle() публичный Метод

Returns the color based on an attribute value
public GetStyle ( SharpMap row ) : SharpMap.Styles.IStyle
row SharpMap DataRow
Результат SharpMap.Styles.IStyle
        public SharpMap.Styles.IStyle GetStyle(SharpMap.Data.FeatureDataRow row)
        {
            SharpMap.Styles.IStyle style = _getStyleDelegate(row);
            if (style != null)
                return style;
            else
                return _DefaultStyle;
        }