You are reading help file online using chmlib.com
|
Rave Reports Developer Reference TBaseReport. GotoXY method |
Top Previous Next |
Declaration procedure GotoXY(NewXPos: double; NewYPos: double);
Category
Description This method will move the text cursor to the position NewXPos, NewYPos.
See also
Example (Delphi) // This code shows how to position the output at specific coordinates. GotoXY(1.0,8.5); Print('Text at 1.0,8.5');
Example (C++Builder) rp1->GotoXY(1.0,8.5); rp1->Print("Text at 1.0,8.5"); |
You are reading help file online using chmlib.com
|