Is there a way to specify text trimming on a TextBlock to be from the left side?
I've manage to accomplish two out of three scenarios (the third being the one I need):
Regular trimming
<TextBlock VerticalAlignment="Center" Width="80" TextTrimming="WordEllipsis" Text="A very long text that requires trimming" /> // Result: "A very long te..."Left trimming
<TextBlock VerticalAlignment="Center" Width="80" FlowDirection="RightToLeft" TextTrimming="WordEllipsis" Text="A very long text that requires trimming." /> // Result: "...A very long te"Left trimming where the end of the text is seen
// Desired result: "...uires trimming"
Does anyone know if this is possible? Thanks.