Style.ForeColor Property
Assembly: System.Web (in system.web.dll)
[TypeConverterAttribute(typeof(WebColorConverter))] public: property Color ForeColor { Color get (); void set (Color value); }
/** @property */ public Color get_ForeColor () /** @property */ public void set_ForeColor (Color value)
public function get ForeColor () : Color public function set ForeColor (value : Color)
Not applicable.
Property Value
A System.Drawing.Color that represents the foreground color of the control. The default is Color.Empty.Use the ForeColor property to specify the foreground color of the Web server control. The foreground color is usually the color of the text. This property will render on browsers earlier than Microsoft Internet Explorer version 4 for all controls, except the Image, AdRotator, HyperLink and LinkButton.
Note: |
|---|
| On browsers that do not support styles, this property is rendered as a FONT element. |
This example demonstrates how to use a Style object to change the style properties of multiple controls at once. Each time one of the Style property values changes, each control must call its ApplyStyle method. Note that not all the controls included support all the properties demonstrated. If a control does not support a particular property, the appearance of the control will not change when the property value is changed.
Note: |
|---|
| The following code sample uses the single-file code model and may not work correctly if copied directly into a code-behind file. This code sample must be copied into an empty text file that has an .aspx extension. For more information on the Web Forms code model, see ASP.NET Web Page Code Model. |
Note: