The LatticeMergeAuto option turns on/off the "Calculate from Inputs" option for a Merge module. The OptionValue is either True or False. True turns on automatic input extents. False turns off automatic input extents.
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “Merge”)
object.Option(“LatticeMergeAuto”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example turns off the automatic input extents for the output lattice from a Merge module.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Merge")
CommandApi.Option ("LatticeMergeAuto", "False")
Used by: LatticeMerge
See Also