I was sure that if I perform the AND operator on:
FontStyle fontStyle;
fontStyle = FontStyle.Bold & FontStyle.Italic
The resulting FontStyle will be Bold Italic, but to my surprise the resulting FontStyle was: FontStyle.Regular
.
Please explain the way to programmatically set the FontStyle to Bold Italic.
I use the FontFamily: New Times Roman.
Thank you.