The Gridder3ZMax option sets the maximum Z value for the output grid, created from a Gridder module. The OptionValue is the Z maximum value.
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “Gridder”)
object.Option(“Gridder3ZMax”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to set the maximum Z value when gridding.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Gridder")
CommandApi.Option ("Gridder3ZMax", "110")
CommandApi.Do()
Used by: Gridder
See Also