GraphObject::DisplayText

ClassName

GraphObject

AccessType

public

Name

DisplayText

Declaration

string DisplayText

Remark

Examples

EX1

void    GraphObject_DisplayText_ex1()
{
        GraphLayer gl = Project.ActiveLayer();
        if( !gl.IsValid() )
                return;
 
        // Get the graphic object "YL", which is the
        // the left Y-axis title:
        GraphObject grobj = gl.GraphObjects("YL");
 
        // Display its text:
        printf("%s=%s\n", grobj.Text, grobj.DisplayText);
}

Description

The display text of a text label.

Header to Include

origin.h

See Also

Reference