HtmlControl.Style Property

Definition

Gets a collection of all cascading style sheet (CSS) properties applied to a specified HTML server control in the ASP.NET file.

C#
[System.ComponentModel.Browsable(false)]
public System.Web.UI.CssStyleCollection Style { get; }

Property Value

A CssStyleCollection object that contains the style properties for the HTML server control.

Attributes

Examples

The following code example demonstrates how to use the Style property to determine the style properties of an HtmlSelect control.

ASP.NET (C#)
<%@ Page Language="C#" AutoEventWireup="True" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >

<script language="C#" runat="server">
   void Page_Load(Object sender, EventArgs e) 
   {
      Message.InnerHtml = "<h4>The select box's style collection contains:</h4>";
     
      IEnumerator keys = Select.Style.Keys.GetEnumerator();

      while (keys.MoveNext()) 
      {

         String key = (String)keys.Current;
         Message.InnerHtml += key + "=" + Select.Style[key] + "<br />";

      }
   }

</script>

<head runat="server">
    <title>The select box's style collection contains:</title>
</head>
<body>
<form id="Form1" runat="server">

   <h3>HtmlControl Style Collection Example</h3>

   Make a selection:

   <select id="Select" 
           style="font: 12pt verdana;
                 background-color:yellow;
                 color:red;" 
           runat="server">

      <option>Item 1</option>
      <option>Item 2</option>
      <option>Item 3</option>

   </select>

   <br />

   <span id="Message" enableviewstate="false" runat="server" />
   
</form>
</body>
</html>

Remarks

Use this property to programmatically access the style properties of the HTML server control.

For additional information on the CSS style collection, see the System.Web.UI.CssStyleCollection class.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also