xHarbour Reference Documentation > Function Reference |
Clears a screen area incrementally with a delayed imploding effect.
ClearSlow( <nDelay> , ; [<nTop>] , ; [<nLeft>] , ; [<nBottom>], ; [<nRight>] , ; [<xChar>] ) --> cNull
The return value is always a null string ("").
See also: | @...CLEAR, SetClearB() |
Category: | CT:Video , Screen functions |
Source: | ct\screen3.prg |
LIB: | xhb.lib |
DLL: | xhbdll.dll |
// The example displays a box and shows the imploding effect // of ClearSlow(). #include "Box.ch" PROCEDURE Main CLS DispBox( 5, 5, 20, 75, B_SINGLE+ " ", "W+/B" ) WAIT ClearSlow( 20, 5, 5, 20, 75, " " ) RETURN
http://www.xHarbour.com