The ExclusionFilterExpr option changes which data is removed when an exclusion filter is applied. The OptionValue is an expression indicating which data should be removed.
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “ExclusionFilter”)
object.Option(“ExclusionFilterExpr”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to set the exclusion filter to remove all data where Z is larger than 50.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "ExclusionFilter")
CommandApi.Option ("ExclusionFilterExpr", "Z>50")
CommandApi.Do()
Used by: ExclusionFilter
See Also