(such as the FlipChildren in delphi)
Code:
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;
}
}
Habe das auf dem FastPage Forum gefunden ist für FastReport NET
ich weiß nur nicht was die Variable C ist