Toggle navigation
ReportBuilder Support Forums
Categories
Discussions
Activity
Sign In
Home
›
General
ReportBuilder 22.06 now available including Delphi 12.2 support!
New Blog Posts: Merging Reports -
Part 1
and
Part 2
Column Traversal
rbuser
February 2002
edited February 2002
in
General
How do I set, via code, for the columns to be printed left to right rather
than top to bottom? I see the option in the page layout... but I need to be
able to define the report via code... TIA
Joe Hutchins
Comments
digitalmetaphors
February 2002
edited February 2002
It is a property of the detail band object.
uses
ppTypes;
procedure TForm1.Button1Click(Sender: TObject);
begin
ppReport1.DetailBand.ColumnTraversal := ctLeftToRight;
end;
Cheers,
Jim Bennett
Digital Metaphors
Digital Metaphors Corporation
http://www.digital-metaphors.com
info@digital-metaphors.com
rbuser
February 2002
edited February 2002
Thanks for the quick reply...
This discussion has been closed.
Comments
uses
ppTypes;
procedure TForm1.Button1Click(Sender: TObject);
begin
ppReport1.DetailBand.ColumnTraversal := ctLeftToRight;
end;
Cheers,
Jim Bennett
Digital Metaphors
http://www.digital-metaphors.com
info@digital-metaphors.com