2.2.4.19.3 GraphObjectBase::DY

ClassName

GraphObjectBase

AccessType

public

Name

DY

Declaration

double DY

Remark

Examples

EX1

// For this example to run, a graph window must exist in the project.
// Also, the active layer in the Graph should have a graphic object (such as rectangle) with
// the name "Rect".
void GraphObject_DY_ex1()
{
    // Create and attach a graph layer from current Graph:
    GraphLayer gl =  Project.ActiveLayer();
    GraphObject grobj;
    
    // Get the graphic object:
    grobj = gl.GraphObjects("Rect");

    // Display the height:
    out_double("DY = ", grobj.DY);
}

Description

Height of the object in axes units. Read and Set access

Header to Include

origin.h

See Also

Reference