The Gradient color of this graphpage
VB: Property Get/Let GradColor As Integer
C++: int GradColor
C#: int GradColor
Sub GradColor() Dim app As Origin.IOApplication Dim gp As Origin.GraphPage app = New Origin.ApplicationSI gp = app.GraphPages.Item(0) If gp Is Nothing Then MsgBox("There is no graphpage in current project") Exit Sub End If gp.GradColor = &H20 'Navy End Sub
8.0SR2