Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
radTextBox1.TextBoxElement.TextBoxItem.ForeColor = Color.Red;
((FillPrimitive)
this
.radTextBox1.TextBoxElement.Children[1]).ForeColor = Color.Red;
Thank you for writing. You can change the font by assigning a Font variable to the Font property of RadTextBox. Consider the following code snippet:
public
partial
class
Form1 : Form
{
Font font;
Form1()
InitializeComponent();
.font =
new
Font(
"Arial"
, 14, FontStyle.Bold | FontStyle.Italic);
.radTextBox1.Font =
.font;
}