![]() |
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. |
AW: Fastreport Seite spiegeln
(such as the FlipChildren in delphi)
Code:
Habe das auf dem FastPage Forum gefunden ist für FastReport 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; } } ich weiß nur nicht was die Variable C ist |
AW: Fastreport Seite spiegeln
Wenn ich das richtig verstehe ist c eine Variable vom Typ Base.
|
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