Movicon Help on Line - Rel. 11.7.1301
Syntax |
CurrentMultiplier = _Byte |
Description |
This property allows you to read or set the Multiplication factor values for the data range selection buttons. '100' is the highest value which can be set and '1' is the lowest. This property is only managed by the Data Analysis and not by the Trend. |
Parameter |
Description |
None |
None |
Result |
Byte |
Example:
Option Explicit
Dim objDataAnalysis As TrendCmdTarget
Public Sub Click()
If Not objDataAnalysis Is Nothing Then
objDataAnalysis.CurrentMultiplier = VAR00001
End If
End Sub
Public Sub SymbolLoading()
Set objDataAnalysis = GetSynopticObject.GetSubObject("objDataAnalysis").GetObjectInterface
End Sub