Section Font Style : Font « Windows Presentation Foundation « VB.Net Tutorial
- VB.Net Tutorial
- Windows Presentation Foundation
- Font
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
HorizontalAlignment="Center" VerticalAlignment="Center">
<FlowDocumentPageViewer>
<FlowDocument>
<Section FontStyle="Italic">
<Paragraph>
Section FontStyle property is set to Italic.
</Paragraph>
<Paragraph FontWeight="Bold">
Bold section.
</Paragraph>
</Section>
</FlowDocument>
</FlowDocumentPageViewer>
</Page>
![WPF Section Font Style](http://www.java2s.com/Tutorial/VBImages/WPF-SectionFontStyle.PNG)