2.19.14 GradColor


Description

The Gradient color of this graphpage

Syntax

VB: Property Get/Let GradColor As Integer
C++: int GradColor
C#: int GradColor

Remark

Examples

VB

    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

Version Information

8.0SR2

See Also