The TestLatticeZNum option changes the number of grid nodes in the Z direction for the output lattice. The OptionValue is a number, indicating the number of grid nodes in the Z direction. This command replaces the SampleLatticeZNum option.
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “TestLattice”)
object.Option(“TestLatticeZNum”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to change the number of Z nodes.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "TestLattice")
CommandApi.Option ("TestLatticeZNum", "30")
CommandApi.Do()
Used by: TestLattice
See Also