RichTextBlock.FontSize Property

Definition

Gets or sets the font size for the text content in this element.

public:
 property double FontSize { double get(); void set(double value); };
double FontSize();

void FontSize(double value);
public double FontSize { get; set; }
var double = richTextBlock.fontSize;
richTextBlock.fontSize = double;
Public Property FontSize As Double
<RichTextBlock FontSize="double" .../>

Property Value

Double

double

A non-negative value that specifies the font size, measured in pixels. The default is 11.

Remarks

Set the FontSize property to specify the default font size to use for all text in the RichTextBlock. You can override this value for specific text elements in the RichTextBlock by setting the TextElement.FontSize property.

Applies to

See also