ActiveTraceDecimalFormat property (TrendPro object)
Returns or sets whether to apply a decimal format or scientific format for the selected trace. Read/write. Boolean.
Syntax
TrendPro1
.ActiveTraceDecimalFormat
[= state
]where
TrendPro1
- is the name of a TrendPro object or an expression that evaluates to a TrendPro object.state
- is a parameter of the type Boolean that can be set to one of the following:- True: Shows values in a decimal format.
- False: Shows values in a scientific format.
Example
Private Sub SetActiveTraceDecimalFormat() TrendPro1.ActiveTraceDecimalFormat = True End Sub
Provide Feedback