The Gridder3DoIt option grids the data with whatever options have been set. The OptionValue is True or False. True grids the data. False does not. This is similar to pressing the Begin Gridding button in the program.
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “Gridder”)
object.Option(“Gridder3DoIt”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to grid the data.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Gridder")
CommandApi.Option ("Gridder3DoIt", "True")
CommandApi.Do()
Used by: Gridder
See Also