Hello Phil,
as configuration option, such feature is not available. There are only two applicable approaches:
1. Use a TTF which is explicitly designed to have strikethrough glyphs.
2. Implement code to display the strikethrough line.
In case of the second option: when using a Text view, you can query the area occupied by the displayed text rows. See the section Arrange other views on the content of the Text view. Knowing this information you can arrange a Line view so it strikes through the text.
This approach is suitable if there are only few Text views intended to display such text. However, if you plan to use this style more frequently, it would be better to derive from the Views::Text class a new class and enhance it by the functionality to draw line segments. You would override the Draw() method of the class and enhance it accordingly.
Does it help you further?
Best regards
Paul Banach