Is there any way to get TextBlock lines as separate strings after text wrapping? For example, if I have a TextBlock defined like this:
TextBlock myTextBlock = new TextBlock();
myTextBlock.TextWrapping = TextWrapping.Wrap;
myTextBlock.Text = veryLongString;
Is it possible to get separate string for each row that is displayed in my TextBlock, which is created by TextWrapping.Wrap?