MobileControl.ForeColor Property

Definition

Gets or sets the specified foreground color for the style. Typically, this property sets the color for the text. The default value is Empty. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

public:
 virtual property System::Drawing::Color ForeColor { System::Drawing::Color get(); void set(System::Drawing::Color value); };
[System.ComponentModel.Bindable(true)]
[System.ComponentModel.TypeConverter(typeof(System.Web.UI.WebControls.WebColorConverter))]
public virtual System.Drawing.Color ForeColor { get; set; }
[<System.ComponentModel.Bindable(true)>]
[<System.ComponentModel.TypeConverter(typeof(System.Web.UI.WebControls.WebColorConverter))>]
member this.ForeColor : System.Drawing.Color with get, set
Public Overridable Property ForeColor As Color

Property Value

The specified foreground color for the style.

Attributes

Remarks

You can use the ForeColor property to display text in different colors for all the controls and classes listed in the Inheritance section that follows. For example, in the AdRotator, setting the ForeColor property changes the color of the text in the control; in the Calendar, it changes the color of the text in the calendar; and in the ValidationSummary, it changes the color of the text of the error messages.

The strings that can be used for colors are a set of fixed colors and hexadecimal RGB values. These values can also be specified in the form "#RRGGBB." For example, "#bb7023".

You can also use the Microsoft Windows color constants. For specific details, see SystemColors.

Applies to

See also