WebControl.ForeColor Property
.NET Framework 3.0
Gets or sets the foreground color (typically the color of the text) of the Web server control.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
'Declaration <TypeConverterAttribute(GetType(WebColorConverter))> _ Public Overridable Property ForeColor As Color 'Usage Dim instance As WebControl Dim value As Color value = instance.ForeColor instance.ForeColor = 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 Color that represents the foreground color of the control. The default is 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 earlier than Microsoft Internet Explorer version 4, this property is rendered as <font> tags. |
The following example illustrates how to set the ForeColor property of the Table control, inherited from the WebControl base class.
<%@ Page Language="VB" AutoEventWireup="True" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> </script> <html xmlns="http://www.w3.org/1999/xhtml" > <head id="Head1" runat="server"> <title>Table Property</title> </head> <body> <form id="form1" runat="server"> <div> <h3>Property of a Table Web Control</h3> <asp:Table id="Table1" runat="server" CellPadding = "10" CellSpacing="0" GridLines="Both" Font-Bold="true" ForeColor="Red"> <asp:TableRow> <asp:TableCell> Row 0, Col 0 </asp:TableCell> <asp:TableCell> Row 0, Col 1 </asp:TableCell> </asp:TableRow> <asp:TableRow> <asp:TableCell> Row 1, Col 0 </asp:TableCell> <asp:TableCell> Row 1, Col 1 </asp:TableCell> </asp:TableRow> </asp:Table> </div> </form> </body> </html>
Community Additions
ADD
Show:
Note: