CssStyleCollection.Remove Metodo

Definizione

Rimuove un elemento di stile dall'insieme CssStyleCollection di un controllo.

Overload

Remove(String)

Rimuove un elemento di stile dall'insieme CssStyleCollection di un controllo utilizzando la chiave di stile specificata.

Remove(HtmlTextWriterStyle)

Rimuove un elemento di stile dall'insieme CssStyleCollection di un controllo utilizzando il valore di enumerazione HtmlTextWriterStyle specificato.

Remove(String)

Rimuove un elemento di stile dall'insieme CssStyleCollection di un controllo utilizzando la chiave di stile specificata.

public:
 void Remove(System::String ^ key);
public void Remove (string key);
member this.Remove : string -> unit
Public Sub Remove (key As String)

Parametri

key
String

Stringa letterale dell'elemento di stile da rimuovere.

Esempio

Nell'esempio seguente viene illustrato come utilizzare il Remove metodo per eliminare a livello di codice uno stile CSS da un HtmlSelect controllo .

<%@ Page Language="C#" %>

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

<script runat="server">

  protected void SubmitBtn_Click(object sender, EventArgs e)
  {
    FirstSelect.Style.Remove("font");
  }
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>CssStyleCollection Remove Example</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    Click the submit button to clear the font formatting.
    <br />
    <select id="FirstSelect" 
            style="font: 14pt Arial; background-color:Yellow; color:Blue;"
            runat="server">
        <option >option 1</option>
        <option >option 2</option>
        <option >option 3</option>
    </select> 
    <input id="SubmitBtn" 
           value="Submit" 
           type="submit" 
           onserverclick="SubmitBtn_Click"
           runat="server" /><br />
    </div>
    </form>
</body></html>
<%@ Page Language="VB" %>

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

<script runat="server">

  Protected Sub SubmitBtn_Click(ByVal sender As Object, ByVal e As System.EventArgs)

    FirstSelect.Style.Remove("font")
    
  End Sub
  
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>CssStyleCollection Remove Example</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    Click the submit button to clear the font formatting.
    <br />
    <select id="FirstSelect" 
            style="font: 14pt Arial; background-color:Yellow; color:Blue;"
            runat="server">
        <option >option 1</option>
        <option >option 2</option>
        <option >option 3</option>
    </select> 
    <input id="SubmitBtn" 
           value="Submit" 
           type="submit" 
           onserverclick="SubmitBtn_Click"
           runat="server" /><br />
    </div>
    </form>
</body></html>

Vedi anche

Si applica a

Remove(HtmlTextWriterStyle)

Rimuove un elemento di stile dall'insieme CssStyleCollection di un controllo utilizzando il valore di enumerazione HtmlTextWriterStyle specificato.

public:
 void Remove(System::Web::UI::HtmlTextWriterStyle key);
public void Remove (System.Web.UI.HtmlTextWriterStyle key);
member this.Remove : System.Web.UI.HtmlTextWriterStyle -> unit
Public Sub Remove (key As HtmlTextWriterStyle)

Parametri

key
HtmlTextWriterStyle

Valore di enumerazione HtmlTextWriterStyle da rimuovere.

Vedi anche

Si applica a