The TestLatticeOutType option changes the output lattice type. The OptionValue is 0, 1, 2, 3, 4, 5, 6, 7, 8 for Signed 8 bits, Unsigned 8 bits, Signed 16 bits, Unsigned 16 bits, Signed 32 bits,'Unsigned 32 bits, Signed 64 bits, Float (32 bits), or Double (64 bits). This command replaces the SampleLatticeOutType option.
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “TestLattice”)
object.Option(“TestLatticeOutType”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to change the type of output from the test lattice.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "TestLattice")
CommandApi.Option ("TestLatticeOutType", "6")
CommandApi.Do()
Used by: TestLattice
See Also