CssStyleCollection.Clear 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
CssStyleCollection 개체에서 모든 스타일 항목을 제거합니다.
public:
void Clear();
public void Clear ();
member this.Clear : unit -> unit
Public Sub Clear ()
예제
다음 예제에서는 메서드를 사용하여 Clear 컨트롤에서 모든 CSS 스타일을 프로그래밍 방식으로 삭제하는 HtmlSelect 방법을 보여 줍니다.
<%@ 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.Clear();
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>CssStyleCollection Clear Example</title>
</head>
<body>
<form id="form1" runat="server">
<div>
Click the submit button to clear the formatting.
<br />
<select id="FirstSelect"
style="font: 12pt 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.Clear()
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>CssStyleCollection Clear Example</title>
</head>
<body>
<form id="form1" runat="server">
<div>
Click the submit button to clear the formatting.
<br />
<select id="FirstSelect"
style="font: 12pt 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>