次の方法で共有


AttributeCollection.Clear メソッド

サーバー コントロールの AttributeCollection オブジェクトからすべての属性を削除します。

名前空間: System.Web.UI
アセンブリ: System.Web (system.web.dll 内)

構文

'宣言
Public Sub Clear
'使用
Dim instance As AttributeCollection

instance.Clear
public void Clear ()
public:
void Clear ()
public void Clear ()
public function Clear ()
適用できません。

使用例

プログラムによって HTML サーバー コントロールの AttributeCollection オブジェクトからすべての属性を削除する方法を次に示します。

<%@ 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 ClearAttribute_Click(ByVal sender As Object, ByVal e As System.EventArgs)
        FirstSelect.Attributes.Clear()
    End Sub
    
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>AttributeCollection Example</title>
</head>

 <body>
    <form id="form1" runat="server">
    <div>
    Make a selection:
    <select id="firstselect"
            style="font:16pt verdana;background-color:yellow;color:black;" 
            runat="server">
       <option>This</option>
       <option>That</option>
       <option>Other</option>
    </select>
    <br/><br/>

    <input type="submit" 
           id="clearattributes"
           value="clear all attributes" 
           onserverclick="clearattribute_click" 
           runat="server"/>
    </div>
 </form>
 </body>
 </html>
<%@ 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 ClearAttribute_Click(object sender, EventArgs e)
    {
        FirstSelect.Attributes.Clear();
    }
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>AttributeCollection Example</title>
</head>

 <body>
    <form id="form1" runat="server">
    <div>
    Make a selection:
    <select id="FirstSelect"
            style="font:16pt verdana; background-color:yellow; color:black;" 
            runat="server">
       <option>This</option>
       <option>That</option>
       <option>Other</option>
    </select>
    <br/><br/>

    <input type="submit" 
           id="clearattributes"
           value="clear all attributes" 
           onserverclick="ClearAttribute_Click" 
           runat="server"/>
    </div>
 </form>
 </body>
 </html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script language="jscript" runat="server">

    function ClearAttribute_Click(Src, e : EventArgs){
        firstselect.Attributes.Clear();
    }
    
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>AttributeCollection Example</title>
</head>

 <body>
    <form id="form1" runat="server">
    <div>
    Make a selection:
    <select id="firstselect"
            style="font:16pt verdana;background-color:yellow;color:black;" 
            runat="server">
       <option>This</option>
       <option>That</option>
       <option>Other</option>
    </select>
    <br/><br/>

    <input type="submit" 
           id="clearattributes"
           value="clear all attributes" 
           onserverclick="ClearAttribute_Click" 
           runat="server"/>
    </div>
 </form>
 </body>
 </html>

プラットフォーム

Windows 98,Windows Server 2000 SP4,Windows CE,Windows Millennium Edition,Windows Mobile for Pocket PC,Windows Mobile for Smartphone,Windows Server 2003,Windows XP Media Center Edition,Windows XP Professional x64 Edition,Windows XP SP2,Windows XP Starter Edition

Microsoft .NET Framework 3.0 は Windows Vista,Microsoft Windows XP SP2,および Windows Server 2003 SP1 でサポートされています。

バージョン情報

.NET Framework

サポート対象 : 3.0,2.0,1.1,1.0

参照

関連項目

AttributeCollection クラス
AttributeCollection メンバ
System.Web.UI 名前空間
Attributes
Attributes