group footer align to bottom of page
Hi,
using Fast Reports VCL 6.9.15/c++ builder xe 10.3.
I would like a group footer to be aligned with page bottom. Is it possible?
Thanks.
Hi,
using Fast Reports VCL 6.9.15/c++ builder xe 10.3.
I would like a group footer to be aligned with page bottom. Is it possible?
Thanks.
Comments
Hello!
Yes, this can be done using the report script.
Any sample?
procedure GroupFooter1OnAfterCalcHeight(Sender: TfrxComponent);
begin
Engine.CurY := Engine.CurY + Engine.FreeSpace - GroupFooter1.Height - 0.000001;
end;