Hello,
Let's say I have a RichTextBlock of width 200 and I have an inline run that wraps, I want to be able to determine the selectable region. More specifically, how can I determine what region the Run occupies on Line 1, Line 2, etc?
<RichTextBlock Width="200" FontSize="20" TextWrapping="Wrap">
<RichTextBlock.Blocks>
<Paragraph >
<Paragraph.Inlines>
<Run Text="My selectable run" />
</Paragraph.Inlines>
</Paragraph>
</RichTextBlock.Blocks>
</RichTextBlock>