xHarbour Reference Documentation > Function Reference |
Outputs a string vertically to the bottom of the screen.
SayDown( <cString>, ; [<nDelay>], ; [<nRow>] , ; [<nCol>] ) --> cNull
The return value is always a null string ("").
Note: the function leaves the cursor position unchanged.
See also: | SayMoveIn(), SaySpread() |
Category: | CT:Video , Screen functions |
Source: | ct\screen3.prg |
LIB: | xhb.lib |
DLL: | xhbdll.dll |
// The example demonstrates the output effect of SayDown(). PROCEDURE Main CLS SayDown( "xHarbour compiler", 10, 2, 40 ) RETURN
http://www.xHarbour.com