You are reading help file online using chmlib.com
|
Rave Reports Developer Reference TBaseReport. PopFont method |
Top Previous Next |
Declaration function PopFont: Boolean;
Category
Description This method will set the font to the setting that was last pushed by PushFont. PopFont will return false if no more fonts exist on the stack.
See also
Example (Delphi) PushFont; SetFont('Arial',10); PrintLn('This is in Arial'); PopFont;
Example (C++Builder) rp1->PushFont(); rp1->SetFont("Arial",10); rp1->PrintLn("This is in Arial"); rp1->PopFont(); |
You are reading help file online using chmlib.com
|