Einzelnen Beitrag anzeigen

Benutzerbild von ATS3788
ATS3788

Registriert seit: 18. Mär 2004
Ort: Kriftel
646 Beiträge
 
Delphi XE Starter
 
#2

AW: Fastreport Seite spiegeln

  Alt 25. Nov 2010, 16:33
(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
Martin MIchael
  Mit Zitat antworten Zitat