You are reading help file online using chmlib.com
|
Rave Reports Developer Reference TBaseReport. PrintLn method |
Top Previous Next |
Declaration procedure PrintLn(Text: string);
Category
Description This method will print the string Text just like the Print method does; however, it also calls NewLine to go to the next line.
See also TBaseReport Class, All other print functions, NewLine
Example (Delphi) RvNDRWriter1.Println( 'Text on a line'); RvNDRWriter1.PrintLn( 'Text on another line');
Example (C++Builder) RvNDRWriter1->PrintLn( "Text on a line"); RvNDRWriter1->Println( "Text on another line"); |
You are reading help file online using chmlib.com
|