PasswordRecovery.ValidatorTextStyle Property

Definition

Gets a reference to a collection of Style properties that define the appearance of error messages that are associated with any input validation used by the PasswordRecovery control.

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

Property Value

A reference to the Style that defines the appearance of error messages that are associated with any input validation used by the PasswordRecovery control. The default is null.

Attributes

Remarks

The ValidatorTextStyle property defines the appearance of validation error messages in the PasswordRecovery control. This property is read-only; however, you can set the properties of the Style object it returns. You can set these properties declaratively in the form Property-Subproperty, where Subproperty represents a property of the Style class (for example, FailureTextStyle-ForeColor). You can set the property programmatically in the form Property.Subproperty (for example, FailureTextStyle.ForeColor).

Common settings include custom background color, text color, and font properties.

The style settings for the ValidatorTextStyle property are merged with the style settings for the PasswordRecovery control. Any settings made in the ValidatorTextStyle property override the corresponding settings in properties of the PasswordRecovery control.

Applies to

See also