How to remove Bold from a Font?

  • Thread starter Thread starter **Developer**
  • Start date Start date
D

**Developer**

I can add Bold to a font as follows:

new Font(myFont, myFont.Style or FontStyle.Bold)



But how can I remove it?

(Not myFont.Style-FontStyle.Bold because myFont.Style may not include
Bold)



Thanks
 
**Developer** said:
I can add Bold to a font as follows:

new Font(myFont, myFont.Style or FontStyle.Bold)

But how can I remove it?

(Not myFont.Style-FontStyle.Bold because myFont.Style may not include
Bold)

'MyFont.Style And Not Bold'.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top