Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Sonstige Werkzeuge (https://www.delphipraxis.net/63-sonstige-werkzeuge/)
-   -   Fastreport Seite spiegeln (https://www.delphipraxis.net/156258-fastreport-seite-spiegeln.html)

ATS3788 25. Nov 2010 11:16

Fastreport Seite spiegeln
 
Ich habe eine Seite mit zwei Columns. Oben links
nur ein Masterband mit Inhalt.

Jetzt würde ja die Seite von oben links nach unten dann
rechts nach unten neue Seite usw. ausgegeben werden.

Weißt jemand vielleicht wie ich das spiegeln kann.

Also die Ausgabe von rechts oben nach unten links usw.

ATS3788 25. Nov 2010 15:33

AW: Fastreport Seite spiegeln
 
(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

DeddyH 25. Nov 2010 15:42

AW: Fastreport Seite spiegeln
 
Wenn ich das richtig verstehe ist c eine Variable vom Typ Base.

ATS3788 25. Nov 2010 17:19

AW: Fastreport Seite spiegeln
 
nur was für eine TFastReport Klasse


Alle Zeitangaben in WEZ +1. Es ist jetzt 08:16 Uhr.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz