The Gridder3Component option changes which data component is being gridded. The OptionValue is an integer, representing the component number.
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “Gridder”)
object.Option(“Gridder3Component”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to set the data component to be gridded to the second component.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Gridder")
CommandApi.Option ("Gridder3Component", "2")
CommandApi.Do()
Used by: Gridder
See Also