Hallo,
ich habe folgendes Problem:
Ich gebe Text folgendermaßen aus:
Delphi-Quellcode:
with Sender as TBaseReport do
begin
GotoXY(X, Y);
Print('Ich bin normal');
end;
Ausgabe
Zitat:
- Ich bin normal
nun wollte ich das ganze mit Rotation (45°) realisieren:
Delphi-Quellcode:
with Sender as TBaseReport do
begin
GotoXY(X, Y);
FontRotation := 45;
Print('Ich bin 45 Grad');
GotoXY(X, Y);
FontRotation := 0;
Print('Ich bin normal');
end;
nun passiert es aber das der 45° Text normal ist und mein normaler Text bekommt ganz viele "Leerzeichen".
Ausgabe
Zitat:
- Ich bin 45 Grad
- Ich____________bin______________normal
Woran liegt das?
Geht die formatierung des Textes verloren?
LG,
Moggy