@...SAY
Displays data to specified coordinates of the current device.
- Syntax
-
- @ <nRow>,<nCol> SAY <xValue> [ PICTURE <cPict> ] [COLOR <cColor>]
- Arguments
-
- <nRow> Row coordinate
- <nCol> Column coordinate
- <xValue> Value to display
- <cPict> PICTURE format
- <cColor> Color string
- Returns
-
- None
- Description
-
- This command displays the contents of <xValue> at row column coordinates <nRow>, <nCol>. A PICTURE clause may be speclfied in <cPict>. If the current device is set to the printer, the output will go to the printer; the default is for all output to go to the screen.
- For a complete list of PICTURES templates and functions, see the @...GET command.
Examples
Function Main
Cls
@ 2,1 SAY "Harbour"
@ 3,1 SAY "is" COLOR "b/r+"
@ 4,1 SAY "Power" PICTURE "@!"
Return NIL
Tests
See Examples
- Status
- Ready
- Compliance
-
- This command is Ca-Clipper compliant
- Platforms
-
- All
- Files
-
- See Also