Today I installed the latest version of Font Awesome. Is it possible to update the IDE’s icon picker to include the new icons?
Do I need to copy specific font files into a certain folder for this to work?
I’m aware that I can use the icons directly in code, for example:
However, my question is specifically about updating or enabling the IDE’s built-in icon picker.
Do I need to copy specific font files into a certain folder for this to work?
I’m aware that I can use the icons directly in code, for example:
Font Awesome icon from assets via code:
Dim fx As JFX
Dim fa As Font = fx.LoadFont(File.DirAssets, "Font Awesome 7 Solid-900.otf", 16)
lblMenu.Font = fa
lblMenu.Text = Chr(0xF2B9) ' unicode icon
However, my question is specifically about updating or enabling the IDE’s built-in icon picker.