Mirror a page in Delphi

Hi.

I have a page with two columns and
my Question how to flip, mirror the columns

I found this for C++ but I don't have any idea
what ReportComponentBase could be.

By the way this script is for Net.


foreach (Base c in report.AllObjects)
{
if (c is ReportComponentBase && !(c is BandBase))
{
ReportComponentBase obj = c as ReportComponentBase;
BandBase parent = obj.Parent as BandBase;
if (parent != null)
obj.Left = parent.Width - obj.Right;
}
}

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.