RuleBasedSymbolizer.Add
Add(Func<Feature, bool>, VectorSymbolizer)
Adds new Rule
.
public void Add(Func<Feature, bool> filter, VectorSymbolizer symbolizer)
Parameter | Type | Description |
---|
filter | Func`2 | Determines when symbolizer should be applied to a feature. |
symbolizer | VectorSymbolizer | Symbolizer to apply to a feature when filter returns true. |
See Also
Add(Rule)
Adds a rule.
public void Add(Rule rule)
Parameter | Type | Description |
---|
rule | Rule | Rule to add. |
Exceptions
exception | condition |
---|
ArgumentNullException | Argument is null . |
See Also