The SubsetXLast option changes the last X index node value to extract for a Subset module. The OptionValue is an integer between 1 and the number of nodes in the X direction. This command replaces the SubsetILast option.
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “Subset”)
object.Option(“SubsetXLast”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the last X index value for the output lattice from a Subset module.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Subset")
CommandApi.Option ("SubsetXLast", "47")
CommandApi.Do()
Used by: Subset
See Also