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