Y
GraphObjectBase
public
double Y
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 GraphObjectBase_Y_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 Y coordinate: out_double("Y = ", grobj.Y); }
The Y coordinate of the center of the object. Read and Set access
origin.h