From: sh on
How can I make a font both bold and underline

Dim DocFont As New Font("Arial", 14, FontStyle.Bold)

only allows 1 at a time.
From: Armin Zingler on
Am 25.06.2010 16:26, schrieb sh:
> How can I make a font both bold and underline
>
> Dim DocFont As New Font("Arial", 14, FontStyle.Bold)
>
> only allows 1 at a time.

Dim DocFont As New Font("Arial", 14, FontStyle.Bold Or FontStyle.Underline)


--
Armin