Description: Changes the display to the user built graphic display (*.bgr).
Syntax:
Tcl: GOTODAQ GRAPH=display_name.bgr
JScript: GOTODAQ("GRAPH=display_name.bgr");
VB Script: GOTODAQ "GRAPH=display_name.bgr"
Argument: display_name.bgr
Returns: none
See Also: GOTO, GOTOTAG, GOTODAQ, GOTODAQ URL=daq:, SENDCMD
Changes the display in the current display window to a user built graphic. User built graphic must have the BGR file extension.
Examples:
#TCL
GOTODAQ GRAPH=main.bgr
// JScript
GOTODAQ("GRAPH=main.bgr");
Rem VB Script
GOTODAQ "GRAPH=main.bgr"
#TCL
set string1 "GRAPH=main.bgr"
GOTODAQ $string1
// JScript
var string1 = "GRAPH=main.bgr";
GOTODAQ(string1);
Rem VB Script
Dim string1
string1 = "GRAPH=main.bgr"
GOTODAQ string1
#TCL
SETVAL {textag1=main.bgr}
GOTODAQ GRAPH=@texttag1