Gridder3SearchRadius Option

 

The Gridder3SearchRadius option changes the maximum 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 maximum points to find. This option is only available if Gridder3Search = 1.

 

Syntax

object.Construct(“ModifyModule”)

object.Option(“Module”, “Gridder”)

object.Option(“Gridder3SearchRadius”, “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 ("Gridder3SearchRadius", "10")

  CommandApi.Do()

 

Used by: Gridder

 

 

See Also

Automation Model