The LatticeMergeYNum option changes the number of nodes in the Y direction for a Merge module. The OptionValue is a integer number, representing the number of nodes.
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “Merge”)
object.Option(“LatticeMergeYNum”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example sets the number of nodes in the Y direction for the Merge module.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Merge")
CommandApi.Option ("LatticeMergeYNum", "30")
Used by: LatticeMerge
See Also