TextOptions Class
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Provides options for controlling the rendering behavior of text, which can be set through an attached property usage on a wide range of Windows Phone types.
Assembly: System.Windows (in System.Windows.dll)
The TextOptions type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | DisplayColorEmoji | Gets or sets a value that indicates whether color emoji is displayed. |
![]() | TextHintingMode | Gets or sets a value that indicates whether text rendering is optimized for readability or animation. |
| Name | Description | |
|---|---|---|
![]() ![]() | GetDisplayColorEmoji | Retrieves the display color of the emoji of the given element. |
![]() ![]() | GetTextHintingMode | Gets the TextHintingMode for this FrameworkElement. |
![]() ![]() | SetDisplayColorEmoji | Sets the DisplayColorEmoji property on the given object. |
![]() ![]() | SetTextHintingMode | Sets the TextHintingMode for this FrameworkElement. |
| Name | Description | |
|---|---|---|
![]() ![]() | DisplayColorEmojiProperty | Identifies the DisplayColorEmoji dependency property. |
![]() ![]() | TextHintingModeProperty | Identifies the TextHintingMode attached property. |
By default, Windows Phone optimizes text for readability. Although this is usually desirable, the rendering behavior that optimizes readability can have a large performance impact when you animate text. This is because during animation Windows Phone is constantly redrawing the optimized text, and this optimization takes significant resources. When animating text, you will likely get better performance by turning off this readability optimization. To turn off readability optimization on a per-element basis, set the TextOptions::TextHintingMode attached property to Animated and then set it back to Fixed when the animation ends.
When you set TextOptions::TextHintingMode (or call SetTextHintingMode), the value and its associated behavior inherits to all objects that are within the visual tree beneath where the value is set.
Animation that applies to text is not necessarily limited to properties of text elements. The most obvious example of a text property that can benefit from Animated behavior when animated is TextElement::FontSize (or other FontSize properties on specific types). But it might also be beneficial to set Animated behavior whenever any container that contains text animates a property that affects rendering and layout. For example, if you apply a TranslateTransform to a Grid that contains text, that animation may look better if you set TextOptions::TextHintingMode to Animated on that Grid container.



