S Sanxion Active Member Licensed User Longtime User May 23, 2016 #1 Hi all Is it possible to specify a custom font if I use the AddTextItem method to add text to the CustomListView or must I use the Add(CreateListItem...method? Thanks
Hi all Is it possible to specify a custom font if I use the AddTextItem method to add text to the CustomListView or must I use the Add(CreateListItem...method? Thanks
Erel B4X founder Staff member Licensed User Longtime User May 24, 2016 #2 The font used is the font set in the designer under Label properties. Upvote 0
S Sanxion Active Member Licensed User Longtime User May 24, 2016 #3 Erel said: The font used is the font set in the designer under Label properties. Click to expand... That is a list of all the standard fonts available, but what if I wanted to add my own? I noticed that when you select 'Add', it filters the files available to image files (unlike B4A where you can add a font). Upvote 0
Erel said: The font used is the font set in the designer under Label properties. Click to expand... That is a list of all the standard fonts available, but what if I wanted to add my own? I noticed that when you select 'Add', it filters the files available to image files (unlike B4A where you can add a font).
Erel B4X founder Staff member Licensed User Longtime User May 24, 2016 #4 You need to set clv.DefaultTextFont in your code. See how InsertAtTextItem is implemented. It is pretty simple. Upvote 0
You need to set clv.DefaultTextFont in your code. See how InsertAtTextItem is implemented. It is pretty simple.
S Sanxion Active Member Licensed User Longtime User May 24, 2016 #5 Erel said: You need to set clv.DefaultTextFont in your code. See how InsertAtTextItem is implemented. It is pretty simple. Click to expand... Thanks Erel. Upvote 0
Erel said: You need to set clv.DefaultTextFont in your code. See how InsertAtTextItem is implemented. It is pretty simple. Click to expand... Thanks Erel.