You are reading help file online using chmlib.com
|
Rave Reports Developer Reference TBaseReport. FinishTabBox method |
Top Previous Next |
Declaration procedure FinishTabBox(Width: integer);
Category
Description Draws the top line for the current set of tabs using a line width of Width. Useful when printing a table drawn with the setting of BOXLINELEFTRIGHT to finish the bottom of each tab box. This function can also be called at the beginning to draw the top line of the table.
See also
Example (Delphi) ClearTabs; SetTab(0.5,pjLeft,1.5,5,BOXLINELEFTRIGHT,0); SetTab(NA, pjLeft,1.5,5,BOXLINELEFTRIGHT,0); SetTab(NA, pjLeft,4.5,5,BOXLINELEFTRIGHT,0); FinishTabBox(1); PrintTab('Name'); PrintTab('Picture'); PrintTab('Description'); NewLine; FinishTabBox(1);
Example (C++Builder) rp1->ClearTabs(); rp1->SetTab(0.5,pjLeft,1.5,5,BOXLINELEFTRIGHT,0); rp1->SetTab(NA, pjLeft,1.5,5,BOXLINELEFTRIGHT,0); rp1->SetTab(NA, pjLeft,4.5,5,BOXLINELEFTRIGHT,0); rp1->FinishTabBox(1); rp1->PrintTab("Name"); rp1->PrintTab("Picture"); rp1->PrintTab("Description"); rp1->NewLine(); rp1->FinishTabBox(1); |
You are reading help file online using chmlib.com
|