Interface IRadRun
Represents a run of text with associated formatting in the document.
Namespace: Telerik.Windows.Documents.UI.TextBlocks
Assembly: Telerik.Windows.Controls.RichTextBox.dll
Syntax
public interface IRadRun
Properties
FlowDirection
Gets or sets the flow direction of the text run.
Declaration
FlowDirection FlowDirection { get; set; }
Property Value
System.Windows.FlowDirection
A value that specifies the flow direction of the text, either left-to-right or right-to-left. |
FontFamily
Gets or sets the font family of the text run.
Declaration
FontFamily FontFamily { get; set; }
Property Value
System.Windows.Media.FontFamily
The font family to be applied to the text run. This value can be a string that represents the name of the font family. |
FontSize
Gets or sets the font size of the text run.
Declaration
double FontSize { get; set; }
Property Value
System.Double
The font size of the text run, represented as a double. |
FontStyle
Represents the font style of a text run in the Telerik document model.
Declaration
FontStyle FontStyle { get; set; }
Property Value
System.Windows.FontStyle
|
FontWeight
Gets or sets the font weight of the text run.
Declaration
FontWeight FontWeight { get; set; }
Property Value
System.Windows.FontWeight
A value that represents the weight of the font, which can affect the appearance of the text. Possible values include normal, bold, or other predefined font weights. |
ForegroundColor
Gets or sets the foreground color of the text block run.
Declaration
Color ForegroundColor { get; set; }
Property Value
System.Windows.Media.Color
The foreground color represented as a System.Windows.Media.Color. |
Text
Gets or sets the text content of the run.
Declaration
string Text { get; set; }
Property Value
System.String
A string representing the text within the run. |