I have FlowDocument
<FlowDocument>
<Paragraph>
<Run Text="foo" />
<Run Text="bar" />
</Paragraph>
</FlowDocument>
How to make 'foo' and 'bar' appear with no space in between?
Try this:
<FlowDocument>
<Paragraph>
<Run Text="foo" /><Run Text="bar" />
</Paragraph>
</FlowDocument>
I've noticed that if you keep the Run elements on the same line it prints it without the space.