Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

TextElement.Foreground Property

Definition

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Gets or sets the Brush to apply to the content in this element.

public:
 property Brush ^ Foreground { Brush ^ get(); void set(Brush ^ value); };
Brush Foreground();

void Foreground(Brush value);
public Brush Foreground { get; set; }
var brush = textElement.foreground;
textElement.foreground = brush;
Public Property Foreground As Brush
<textElementForeground="{StaticResource resourceName}"/>
- or -
<textElementForeground="colorString"/>
- or -
<textElement>
 <textElement.Foreground>singleBrush</textElement.Foreground>
</textElement>

Property Value

The brush that is applied to the text content. The default is a SolidColorBrush with Color value Black.

Remarks

Setting Foreground has no visible effect for LineBreak or InlineUIContainer objects.

Applies to

See also


Feedback

Was this page helpful?