Share via


RichEditBox.SelectionHighlightColorWhenNotFocused Property

Definition

Gets or sets the brush used to highlight the selected text when the RichEditBox does not have focus.

public:
 property SolidColorBrush ^ SelectionHighlightColorWhenNotFocused { SolidColorBrush ^ get(); void set(SolidColorBrush ^ value); };
SolidColorBrush SelectionHighlightColorWhenNotFocused();

void SelectionHighlightColorWhenNotFocused(SolidColorBrush value);
public SolidColorBrush SelectionHighlightColorWhenNotFocused { get; set; }
var solidColorBrush = richEditBox.selectionHighlightColorWhenNotFocused;
richEditBox.selectionHighlightColorWhenNotFocused = solidColorBrush;
Public Property SelectionHighlightColorWhenNotFocused As SolidColorBrush
<RichEditBox SelectionHighlightColorWhenNotFocused="{StaticResource resourceName}"/>
- or -
<RichEditBox SelectionHighlightColorWhenNotFocused="colorString"/>

Property Value

The brush used to highlight the selected text when RichEditBox loses focus. The default is a null brush from a pure code perspective, but the default control template for RichEditBox applies a Transparent brush for this in a runtime instance of a RichEditBox control. To disable the SelectionHighlightColorWhenNotFocused, set the brush to Transparent once again.

Applies to

See also