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