The LatticeFilterEdge option changes the edge handling for the filter applied to a function lattice. The OptionValue is 0, 1, 2, 3, 4, or 5 for Blank, Ignore, Replicate, Mirror, Cyclic Wrap, or Fill.
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “Filter”)
object.Option(“LatticeFilterEdge”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to change the edge handling for the filter for the function lattice.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Filter")
CommandApi.Option ("LatticeFilterEdge", "5")
CommandApi.Do()
Used by: LatticeFilter
See Also