GRAPH.Exists

Previous  Next

 

nStatus = GRAPH.Exists( BYVAL nControl AS INTEGER ) AS INTEGER

 


 

Returns TRUE if a graph has been created by using GRAPH.New.

 

 

Example:

 

GRAPH.New( nControl, NG_XY, "Graph" )

 

IF GRAPH.Exists( nControl ) THEN

  ' Do some graphing stuff....

ENDIF