Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Sonstige Fragen zu Delphi (https://www.delphipraxis.net/19-sonstige-fragen-zu-delphi/)
-   -   Delphi Font in TEdit ändern (https://www.delphipraxis.net/69313-font-tedit-aendern.html)

qb-tim 13. Mai 2006 10:43


Font in TEdit ändern
 
Hi,

ich habe versucht ein schon vorhandenes Thema zu suchen welches diese Frage beantwortet aber ich konnte eines nicht finden... :(

Meine Frage lautet:

Wie ändere ich (im Quellentext) den Font eines TEdit? :roll:
Ich möchte auf OnClick den Font des TEdit fett (bold) machen.

Luckie 13. Mai 2006 10:50

Re: Font in TEdit ändern
 
Delphi-Quellcode:
Edit1.Font.FontStyle := [fsBold];
Mal so aus dem Kopf.

xaromz 13. Mai 2006 10:50

Re: Font in TEdit ändern
 
Hallo,

das ist einfach:
Delphi-Quellcode:
Edit1.Font.Style := [fsBold];
bzw.
Delphi-Quellcode:
Edit1.Font.Style := Edit1.Font.Style + [fsBold];
wenn Du die bisherige Formatierung beibehalten willst.

Gruß
xaromz

qb-tim 13. Mai 2006 11:17

Re: Font in TEdit ändern
 
Und wie mache ich dann das fett wieder zu normal?

pacman1986 13. Mai 2006 11:48

Re: Font in TEdit ändern
 
Zitat:

Zitat von xaromz
Delphi-Quellcode:
Edit1.Font.Style := [fsBold];
bzw.
Delphi-Quellcode:
Edit1.Font.Style := Edit1.Font.Style + [fsBold];
wenn Du die bisherige Formatierung beibehalten willst.

Delphi-Quellcode:
Edit1.Font.Style := [];
oder
Delphi-Quellcode:
Edit1.Font.Style := Edit1.Font.Style - [fsBold];

SirThornberry 13. Mai 2006 11:53

Re: Font in TEdit ändern
 
nie mit "+" oder "-" bei sowas arbeiten. Denn wenn die Schrift schon fett ist und man nochmal "Fett" addiert kommt was ganz anderes raus.

xaromz 13. Mai 2006 12:04

Re: Font in TEdit ändern
 
Hallo,
Zitat:

Zitat von SirThornberry
nie mit "+" oder "-" bei sowas arbeiten. Denn wenn die Schrift schon fett ist und man nochmal "Fett" addiert kommt was ganz anderes raus.

Also bei mir nicht :gruebel: .

Gruß
xaromz


Alle Zeitangaben in WEZ +1. Es ist jetzt 19:25 Uhr.

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