System.Web.UI.HtmlControls Namespace HtmlTableRow Class
Sets or retrieves the background color of an HtmlTableRow control.
Inline |
<tr bgcolor = strColor ... > |
Script |
HtmlTableRow.BgColor [ = strColor ] |
strColor |
A System.Drawing.Color that represents the background color of the control, using any of the standard .NET color identifiers. See Color Table. |
This property is read/write and returns an empty string if not set.
BgColor is used to specify the color under the content ( the background color ) of an HtmlTableRow control. This property is set using a System.Drawing.Color object, the possible range of values of which are specified in this workshop's Color Table.
Setting this property affects all cells in the row. To apply a background color to a single cell, set the BgColor property for that cell instead.
The following example shows how to declaratively set the BgColor property of an HtmlTableRow control at design time.
<table cellspacing=1 width="92%" border=1 runat="server">
<tr bgcolor="cornsilk">
<td>Table data cell 1</td>
<td>Table data cell 2</td>
</tr>
</table>
The example below shows how to programmatically set the BgColor property of each HtmlTableRow at run time, depending on user input. The code also demonstrates how simple it is to retrieve the available colors in .NET ( via the KnownColor enum ), and dynamically add each to a selectable list.
void Page_Load ( object Source, EventArgs e ) {
if ( !IsPostBack ) {
Array colors = Enum.GetValues ( typeof ( KnownColor ) );
foreach ( KnownColor k in colors ) {
Color c = Color.FromKnownColor ( k );
if ( !c.IsSystemColor )
rowColorSelect.Items.Add ( c.Name );
}
}
// set the background color for each row
for ( int r = 0; r <= myTable.Rows.Count - 1; r++ ) {
myTable.Rows [ r ].BgColor = rowColorSelect.Value;
}
}
Show me
HtmlTableRow Members