I have html file containing text with strong tag can say <strong>Windows Presentation Framework</strong>
. I want to implement strong tag in flow document of WPF. I tried by setting font weight property to bold but not find an expected result/output as in html file. Any clue or hint on how to do it?
For <b>
tag i tried with :
flowdocument.FontWeight = FontWeights.Bold;
I am trying to say whether I am go for class FontWeights(Bold
or ExtraBold
or SemiBold
or Normal
) or class FontStretches(Expanded
or SemiExpanded
or ExtraExpanded
or Normal
)