Let's start with the XML.
<Text IsHtmlTagSupported="true">
<Segment FontName="Arial" FontSize="11">
<ul><li>item 1</li><li>item 2</li></ul>
</Segment>
</Text>
In the code above my ordered list text is not 11pt Arial, it is the default sized Times font. If I change it to:
<Text IsHtmlTagSupported="true" FontName="Arial" FontSize="11">
<Segment>
<ul><li>item 1</li><li>item 2</li></ul>
</Segment>
</Text>
Now the font is 11pt Arial. However let's say I have two segments, and I want the 2nd segment a different size.
<Text IsHtmlTagSupported="true" FontName="Arial" FontSize="11">
<Segment>
<ul><li>item 1</li><li>item 2</li></ul>
</Segment>
<Segment FontName="Arial" FontSize="22">
This is my second segment
</Segment>
</Text>
The font size for both segments show up 11pt Arial, even though the 2nd segment should be 22pt Arial.
Remember, this is all specified in the XML file.
Let me know when this can be fixed.
Dan