The LatticeResampleAuto option turns on/off the "Calculate from Inputs" option for a Resample 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”, “Resample”)
object.Option(“LatticeResampleAuto”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example turns off the automatic input extents for the output lattice from Resample module.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Resample")
CommandApi.Option ("LatticeResampleAuto", "False")
Used by: LatticeResample
See Also