You are reading help file online using chmlib.com
|
Rave Reports Developer Reference LPI property (read/write/published) |
Top Previous Next |
Declaration property LPI: double;
Default 6
Category
Components TRvRenderTEXT
Description Sets the Lines Per Inch for translation from vertical units to text lines.
See also
Example (Delphi) WITH RvRenderText1 do begin CPI := 16; LPI := 8; PrintLn('This text is 16 characters per inch'); PrintLn('With 8 Lines per inch'); end; { with }
Example (C++Builder) RvRenderText1->CPI = 16; RvRenderText1->LPI = 8; RvRenderText1->PrintLn("This text is 16 characters per inch"); RvRenderText1->PrintLn("With 8 Lines per inch"); |
You are reading help file online using chmlib.com
|