What is the correct font name to use for Dejavu?

Copy the font array and you’ll have your answer:

Var names() as String
For i As Integer = 0 To System.FontCount - 1
  Names.Add(System.FontAt(i))
Next
Break
1 Like