CssStyleCollection.Remove 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
從控制項的 CssStyleCollection 中移除樣式項目。
多載
Remove(String) |
使用指定的樣式索引鍵,從控制項的 CssStyleCollection 集合中移除樣式項目。 |
Remove(HtmlTextWriterStyle) |
使用指定的 CssStyleCollection 列舉值,從控制項的 HtmlTextWriterStyle 集合中移除樣式項目。 |
Remove(String)
使用指定的樣式索引鍵,從控制項的 CssStyleCollection 集合中移除樣式項目。
public:
void Remove(System::String ^ key);
public void Remove (string key);
member this.Remove : string -> unit
Public Sub Remove (key As String)
參數
- key
- String
要移除的樣式項目字串常值。
範例
下列範例示範如何使用 Remove 方法,以程式設計方式從 HtmlSelect 控制項中刪除 CSS 樣式。
<%@ 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>
另請參閱
適用於
Remove(HtmlTextWriterStyle)
使用指定的 CssStyleCollection 列舉值,從控制項的 HtmlTextWriterStyle 集合中移除樣式項目。
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)
參數
要移除的 HtmlTextWriterStyle 列舉值。