Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Delphi-News aus aller Welt (https://www.delphipraxis.net/58-delphi-news-aus-aller-welt/)
-   -   [FMX] [Tip], change the font size in Firefox monkey TComboBox (https://www.delphipraxis.net/199792-%5Bfmx%5D-%5Btip%5D-change-font-size-firefox-monkey-tcombobox.html)

DP News-Robot 20. Feb 2019 08:40

[FMX] [Tip], change the font size in Firefox monkey TComboBox
 
Fire monkey of TComboBox to provide properties such as the TextSetting and not the font settings will be limited through the combo box (TComboBox). code of the font will guide you through how to set up the code, change the font size combo box with 20 p r o c e d: u r e StyleComboBoxItems (ComboBox: TComboBox; Size:Single);var Item : TListBoxItem; i : Integer;begin for i := 0 to ComboBox.Count-1 do begin Item := ComboBox.ListItems[i];Item.Font.Family := Family; 'Arial'; Item.Font.Size := Size; 20; Item.FontColor := TAlphaColorRec.R

Weiterlesen...


Alle Zeitangaben in WEZ +1. Es ist jetzt 14:58 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