GraphObjectBase::YTemp

ClassName

GraphObjectBase

AccessType

public

Name

YTemp

Declaration

double YTemp

Remark

Examples

void GraphObjectBase_YTemp_Ex1()
{
        //make sure there exists an active graphlayer
        GraphLayer gl = Project.ActiveLayer();
        if ( !gl )
        {
                printf("Can not get active graphlayer!");
                return;
        }
        foreach( GraphObject go in gl.GraphObjects )
        {
                printf("Y-coodinate of the center of the graphobject %s is %lf\n", go.GetName(), go.YTemp);
        }
        return;
}

Description

The Y coordinate of the center of the object when it is being moved Read access

header to Include

origin.h

See Also

Reference