You are reading help file online using chmlib.com
|
Rave Reports Developer Reference TBaseReport. TabWidth method |
Top Previous Next |
Declaration function TabWidth(Index: integer): double;
Category
Description This method will return the width of the tab box specified by Index. If Index is 0 then the result will be for the current tab and if Index is greater than the number of defined tabs then a value of 0.0 will be returned.
See also TBaseReport Class, TabEnd, TabStart
Example (Delphi) // Width of current tab region CurrWidth := RvNDRWriter1.TabWidth( 0);
Example (C++Builder) CurrWidth = RvNDRWriter1->TabWidth( 0); |
You are reading help file online using chmlib.com
|