I have a RichTextBlock in UWP.
I need to configure how much space a tab is going to take: this is basically the same concept of the iOS primitive "defaultTabInterval": https://developer.apple.com/documentation/uikit/nsmutableparagraphstyle/1529861-defaulttabinterval?language=objc
How do I achieve this goal in UWP?
In UWP, there is no API that can set the width of Tab (
\t) independently.As a workaround, you can try replacing all
\twith more controllable spaces before assigningTexttoRichTextBlock.Best regards.