The AxesZAxisTicksPerLabel option changes the number of tick marks between major tick marks on the Z Axis. The OptionValue is set to any number. This command replaces the AxesZAxisTicsPerLabel option in newer scripts.
Syntax
object.Construct(“CreateModule”)
object.Option(“SourceModule”, “data file name”)
object.Option(“Type”, "Axes")
object.Do() or object.DoOnce()
object.Construct(“ModifyModule”)
object.Option(“Module”, “Axes”)
object.Option(“AxesZAxisTicksPerLabel”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to change the number of ticks between major ticks.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Axes")
CommandApi.Option ("AxesZAxisTicksPerLabel", "2")
CommandApi.Do()
Used by: Axes module
See Also