Resizing the frxCross
I want resize the frxCross in runtime. I used the functions as below. The font of the table will smaller or bigger but the border of the cells doesn???t resize. What can I do to resize the whole table and not the text only. I have set the autosize of the cross to true.
procedure TSeite_EinrichtenDlg.Edit2Change(Sender: TObject);
var Page1: TfrxReportPage;
begin
Page1:= frxReport1.FindObject('Page1') as TfrxReportPage;
Page1.Font.Size:= strtoint(edit2.Text);
frxReport1.PrepareReport;
frxReport1.Preview:= frxPreview1;
frxReport1.ShowReport(true);
end;
Thanks for your help.
Norbert
procedure TSeite_EinrichtenDlg.Edit2Change(Sender: TObject);
var Page1: TfrxReportPage;
begin
Page1:= frxReport1.FindObject('Page1') as TfrxReportPage;
Page1.Font.Size:= strtoint(edit2.Text);
frxReport1.PrepareReport;
frxReport1.Preview:= frxPreview1;
frxReport1.ShowReport(true);
end;
Thanks for your help.
Norbert