AccessText.TextDecorations Property

Definition

Gets or sets the decorations that are added to the text of an AccessText element.

public:
 property System::Windows::TextDecorationCollection ^ TextDecorations { System::Windows::TextDecorationCollection ^ get(); void set(System::Windows::TextDecorationCollection ^ value); };
public System.Windows.TextDecorationCollection TextDecorations { get; set; }
member this.TextDecorations : System.Windows.TextDecorationCollection with get, set
Public Property TextDecorations As TextDecorationCollection

Property Value

The TextDecorations applied to the text of an AccessText. The default is null.

Remarks

For more information about text decorations, see TextDecorations.

This property is not typically set, either by using markup or code.

This property exposes the default decoration for an access key (an underline in the same text color as the text) for possible styling or programmatic change. Because users expect access key identifiers to have a certain appearance in the user interface (UI), a better choice is to change this property by using application-wide mechanisms, such as application styles or custom themes.

XAML Property Element Usage

<object>  
  <object.TextDecorations>  
    OneOrMoreTextDecorations  
  </object.TextDecorations>  
</object>  

XAML Values

OneOrMoreTextDecorations
One or more TextDecoration elements. Use this syntax if you are defining custom text decorations. For details, see How to: Create a Text Decoration.

Dependency Property Information

Identifier field TextDecorationsProperty
Metadata properties set to true AffectsRender

Applies to

See also