The Gridder3YNum option sets the number of nodes in the Y direction for the output grid, created from a Gridder module. The OptionValue is an integer, representing the number of nodes.
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “Gridder”)
object.Option(“Gridder3YNum”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to set the number of nodes in the Y direction when gridding.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Gridder")
CommandApi.Option ("Gridder3YNum", "50")
CommandApi.Do()
Used by: Gridder
See Also