The Gridder3SearchMin option changes the minimum number of data in the search neighborhood for the output grid, created from a Gridder module. The OptionValue is an integer, representing the number of minimum points to find. This option is only available if Gridder3Search = 1, 2, 3.
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “Gridder”)
object.Option(“Gridder3SearchMin”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to change the minimum number of points to use when searching.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Gridder")
CommandApi.Option ("Gridder3SearchMin", "2")
CommandApi.Do()
Used by: Gridder
See Also