ChangePassword.TextBoxStyle Property

Definition

Gets a reference to a collection of Style properties that define the appearance of text box controls on the ChangePassword control.

public:
 property System::Web::UI::WebControls::Style ^ TextBoxStyle { System::Web::UI::WebControls::Style ^ get(); };
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)]
public System.Web.UI.WebControls.Style TextBoxStyle { get; }
[<System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)>]
member this.TextBoxStyle : System.Web.UI.WebControls.Style
Public ReadOnly Property TextBoxStyle As Style

Property Value

A Style object that defines the appearance of text box controls on the ChangePassword control. The default is null.

Attributes

Remarks

The following table lists the style settings that are available for customization with the TextBoxStyle property.

Setting Description
BackColor The background color of text boxes. The color can be any of the Color properties.
BorderColor The color of the border around the text boxes. The color can be any of the Color properties.
BorderStyle The style of the border around the text boxes. The style can be "None", "Dotted", "Dashed", "Solid", "Double", "Groove", "Ridge", "Inset", or "Outset". The default is "NotSet". Some styles do not show up clearly unless the BorderWidth value is greater than 2.
BorderWidth The width of the border around the text boxes.
CssClass The cascading style sheet (CSS) class used to render the text boxes. If other settings are specified, they will override a style sheet setting.
Font-Bold true to display the text boxes text in bold type.
Font-Italic true to display the text boxes text in italic type.
Font-Names The name of the font face.
Font-Overline true to display the text boxes text with a line above it.
Font-Size The size of the text in the text boxes as a FontUnit object.
Font-Strikeout true to display the text boxes text as crossed out.
Font-Underline true to display the text boxes text with an underline.
ForeColor The color of the text in the text boxes. The color can be any of the Color properties.
Height A Unit that represents the height of the text boxes.
Width A Unit that represents the width of the text boxes.

Applies to

See also