The EnvironmentVerticalExaggeration option sets the amount of vertical exaggeration in the Viewer window. The OptionValue is a number between 0.00001 and 100000.
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “Viewer Window”)
object.Option(“EnvironmentVerticalExaggeration”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to alter the Viewer window vertical exaggeration.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Viewer Window")
CommandApi.Option ("EnvironmentVerticalExaggeration", "2")
CommandApi.Do()
Used by: Environment
See Also