2.19.38 Width


Description

GraphPage width in Inch

Syntax

VB: Property Get/Let Width As Double
C++: double Width
C#: double Width

Remark

Examples

VB

    Sub GraphProp()
        Dim app As Origin.IOApplication
        Dim gp As Origin.GraphPage

        app = New Origin.ApplicationSI
        gp = app.GraphPages(0)
        Dim w, h As Double
        w = gp.Width
        h = gp.Height
        MsgBox("Graph Width is " + w.ToString() + " and Height is " + h.ToString() + "(Inch)")
    End Sub

Version Information

8.0SR2

See Also