2.19.15 Height


Description

GraphPage's height, in Inch

Syntax

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

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