The Gridder3Search option sets the search type to use for the output grid, created from a Gridder module. The OptionValue is 0, 1, 2, or 3 for All Data, Simple, Anisotropic, or General.
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “Gridder”)
object.Option(“Gridder3Search”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to change the search type to Anisotropic.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Gridder")
CommandApi.Option ("Gridder3Search", "2")
CommandApi.Do()
Used by: Gridder
See Also