FunctionLattice

 

The FunctionLattice module is created with the CreateModule command by setting the Type to FunctionLattice. The properties of the FunctionLattice are altered with the ModifyModule command. This is similar to the Network | Data Source | FunctionLattice command.

 

Module Type

FunctionLattice

 

Syntax

object.Construct(“CreateModule”)

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

object.Do() or object.DoOnce()

 

object.Construct(“ModifyModule”)

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

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

object.Do() or object.DoOnce()

 

Option Name

FunctionLatticeXMin

FunctionLatticeXMax

FunctionLatticeYMin

FunctionLatticeYMax

FunctionLatticeZMin

FunctionLatticeZMax

FunctionLatticeXNum

FunctionLatticeYNum

FunctionLatticeZNum

FunctionLatticeOutType

FunctionLatticeOutComps

FunctionLatticeExprComp1

FunctionLatticeExprComp2

FunctionLatticeExprComp3

FunctionLatticeExprComp4

FunctionLatticeExprComp5

FunctionLatticeExprComp6

FunctionLatticeExprComp7

FunctionLatticeExprComp8

FunctionLatticeExprComp9

FunctionLatticeExprComp10

FunctionLatticeExprComp11

FunctionLatticeExprComp12

FunctionLatticeExprComp13

FunctionLatticeExprComp14

FunctionLatticeExprComp15

FunctionLatticeExprComp16

FunctionLatticeExprComp17

FunctionLatticeExprComp18

FunctionLatticeExprComp19

FunctionLatticeExprComp20

 

Example

This example shows how to create a function lattice.

 

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()

 

 'Create a function lattice

  CommandApi.Construct ("CreateModule")

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

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

  CommandApi.Do()

 

End Sub

 

Used by: CreateModule, ModifyModule

 

 

See Also

Automation Model

Automation Example - FunctionLattice