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