Loop through objects in MasterData Band
How would I do this in the MasterData.OnBeforePrint function. I want to loop through the objects in the MasterData band in order to change their fond style to bold. Like a FOR loop.
Thank you.
Thank you.
Comments
i: Integer;
c: TObject;
for i := 0 to Sender.Objects.Count - 1 do
begin
c := Sender.Objects
if c is TfrxMemoView then
TfrxMemoView©.font.style :=fsbold;
end;