New to Telerik UI for ASP.NET AJAXStart a free 30-day trial

TextBox and Label Decoration

Child controls decoration

RadCaptcha offer two composite properties - TextBoxDecoration and TextBoxLabelDecoration that offer properties to apply style decoration (Figure 1) following the standard System.Web.UI.WebControls.WebControl decoration properties. You can set BackColor, Font, etc.

In the following example we will customize the border of the TextBox and the Font style of the TextBoxLabel.

ASPNET
<telerik:RadCaptcha ID="RadCaptcha1" runat="server">
	<TextBoxDecoration BorderColor="Gray" BorderStyle="Solid" BorderWidth="2px" />
	<TextBoxLabelDecoration ForeColor="Gray" Font-Italic="true" Font-Names="Verdana, Arial, Georgia" />
</telerik:RadCaptcha>

Figure 1: RadCaptcha with decorated TextBox and TextBoxLabel

captcha-controls-decoration

See Also