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