Movicon Help on Line - Rel. 11.7.1301
Syntax  | 
		InvertDrawDirection = _Boolean  | 
	
Description  | 
		Inverts the direction of the Graph and the positions of the Pens. This property is applied after Trend Refresh.  | 
	
  | 
		This property is not available for the "Data Analysis" object.  | 
	
Parameter  | 
		Description  | 
	
None  | 
		None  | 
	
Result  | 
		Boolean  | 
	
Example:
Option Explicit
Dim oTrend As TrendCmdTarget
Public Sub Click()
oTrend.InvertDrawDirection = Not(oTrend.InvertDrawDirection)
oTrend.Refresh
End Sub
Public Sub SymbolLoading()
Set oTrend = GetSynopticObject.GetSubObject("Trend").GetObjectInterface
End Sub