You are reading help file online using chmlib.com
|
Rave Reports Developer Reference TBaseReport. SetColumnWidth method |
Top Previous Next |
Declaration procedure SetColumnWidth(Width: double; Between: double);
Category
Description This method sets the columns to a specific width, Width, with a separation, Between, between each column. The number of columns is calculated to fit within the current SectionLeft and SectionRight.
See also TBaseReport Class, Columns, SectionLeft, SectionRight, SetColumns
Example (Delphi) // Create columns 2 inches wide and a half of an inch apart RvNDRWriter1.SetColumnWidth( 2.0, 0.5 );
Example (C++Builder) RvNDRWriter1->SetColumnWidth( 2.0, 0.5 ); |
You are reading help file online using chmlib.com
|