Example: Band.ApplyBestFit, TreeList.FullExpand
The following simple code shows how to apply best fit to a band
The following simple code shows how to apply best fit to a band
procedure <Form>.FormShow(Sender: TObject);
begin
cxTreeList1.Bands[0].Caption.Text := 'Primary information about product';
cxTreeList1.Bands[0].ApplyBestFit;
end;
void __fastcall <Form>::FormShow(TObject *Sender) {
cxTreeList1->Bands->Items[0]->Caption->Text ="Primary information about product";
cxTreeList1->Bands->Items[0]->ApplyBestFit();
}
No
Your feedback is appreciated.