Gridder

 

The Gridder module is created with the CreateModule command. The properties of the Gridder module are altered with the ModifyModule command. This is similar to the Network | Computational | Gridder command.

 

Syntax

object.Construct(“CreateModule”)

object.Option(“SourceModule”, “data file name”)

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

object.Do() or object.DoOnce()

 

object.Construct(“ModifyModule”)

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

object.Option(“Option_Name”, “OptionValue”)

object.Do() or object.DoOnce()

 

Option Name

Gridder3Component

Gridder3Auto

Gridder3XMin

Gridder3XMax

Gridder3YMin

Gridder3YMax

Gridder3ZMin

Gridder3ZMax

Gridder3XNum

Gridder3YNum

Gridder3ZNum

Gridder3XSpacing

Gridder3YSpacing

Gridder3ZSpacing

Gridder3Search

Gridder3SearchMin

Gridder3SearchMax

Gridder3SearchRadius

Gridder3SearchXLength

Gridder3SearchYLength

Gridder3SearchZLength

Gridder3SearchFirstSemiAxisX

Gridder3SearchFirstSemiAxisY

Gridder3SearchFirstSemiAxisZ

Gridder3SearchSecondSemiAxisX

Gridder3SearchSecondSemiAxisY

Gridder3SearchSecondSemiAxisZ

Gridder3SearchThirdSemiAxisX

Gridder3SearchThirdSemiAxisY

Gridder3SearchThirdSemiAxisZ

Gridder3Method

Gridder3Aniso

Gridder3AnisoXLength

Gridder3AnisoYLength

Gridder3AnisoZLength

Gridder3AnisoFirstSemiAxisX

Gridder3AnisoFirstSemiAxisY

Gridder3AnisoFirstSemiAxisZ

Gridder3AnisoSecondSemiAxisX

Gridder3AnisoSecondSemiAxisY

Gridder3AnisoSecondSemiAxisZ

Gridder3AnisoThirdSemiAxisX

Gridder3AnisoThirdSemiAxisY

Gridder3AnisoThirdSemiAxisZ

Gridder3Metric

Gridder3DistancePower

Gridder3DistanceSmooth

Gridder3PolyOrder

Gridder3PolyPower

Gridder3DoIt

 

Example

This example shows how to add a Gridder module to a data file.

 

Sub Main

 

 'Declares VoxlerApp as an object

  Dim VoxlerApp As Object

 

 'Creates an instance of the Voxler application object

 'and assigns it to the variable named "VoxlerApp"

  Set VoxlerApp = CreateObject("Voxler.Application")

 

 'Make Voxler visible

  VoxlerApp.Visible = True

 

 'Access CommandApi

  Set CommandApi = VoxlerApp.CommandApi

 

 'Create a new Voxler document

  CommandApi.Construct ("New")

  CommandApi.DoOnce()

 

 'Load the data file

  CommandApi.Construct("Import")

  CommandApi.Option("AutoConnect", "False")

  CommandApi.Option ("DefaultPosition", "True")

  CommandApi.Option ("Path", "c:\program files\golden software\Voxler 4\Samples\GoldConcentration.dat")

  CommandApi.Option ("Filter", "dat")

  CommandApi.Option ("Options", "Defaults=1;EatWhitespace=1;Delimiter=Space,tab,comma,semicolon;TextQualifier=doublequote,quote")

  CommandApi.Option ("GuiEnabled", "False")

  CommandApi.Do()

 

 'Add a gridder module

  CommandApi.Construct("CreateModule")

  CommandApi.Option ("AutoConnect", "True")

  CommandApi.Option ("SourceModule", "GoldConcentration.dat ")

  CommandApi.Option ("Type", "Gridder")

  CommandApi.Do()

 

End Sub

 

Used by: CreateModule, ModifyModule

 

 

See Also

Automation Model