HtmlTableCellCollection.Clear Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Supprime tous les objets HtmlTableCell de la collection HtmlTableCellCollection.
public:
void Clear();
public void Clear ();
member this.Clear : unit -> unit
Public Sub Clear ()
Exemples
L’exemple de code suivant montre comment utiliser la Clear méthode pour supprimer tous les éléments de la HtmlTableCellCollection collection. De nouvelles entrées sont ensuite ajoutées à la collection et affichées dans le HtmlTable contrôle.
<%@ 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">
<script runat="server">
void Button_Click(Object sender, EventArgs e)
{
// Clear the cells from the first row and remove the
// row from the table.
Table1.Rows[0].Cells.Clear();
Table1.Rows.RemoveAt(0);
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>HtmlTableCellCollection Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>HtmlTableCellCollection Example</h3>
<table id="Table1"
style="border-width:1; border-color:Black"
runat="server">
<tr>
<td>
Cell 1
</td>
<td>
Cell 2
</td>
</tr>
<tr>
<td>
Cell 3
</td>
<td>
Cell 4
</td>
</tr>
</table>
<br /><br />
<input type="button"
value="Remove First Row from Table"
onserverclick="Button_Click"
runat="server"/>
</form>
</body>
</html>
<%@ Page Language="VB" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
Sub Button_Click(ByVal sender As Object, ByVal e As EventArgs)
' Clear the cells from the first row and remove the
' row from the table.
Table1.Rows(0).Cells.Clear()
Table1.Rows.RemoveAt(0)
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>HtmlTableCellCollection Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>HtmlTableCellCollection Example</h3>
<table id="Table1"
style="border-width:1; border-color:Black"
runat="server">
<tr>
<td>
Cell 1
</td>
<td>
Cell 2
</td>
</tr>
<tr>
<td>
Cell 3
</td>
<td>
Cell 4
</td>
</tr>
</table>
<br /><br />
<input type="button"
value="Remove First Row from Table"
onserverclick="Button_Click"
runat="server"/>
</form>
</body>
</html>
Remarques
Utilisez cette méthode pour supprimer tous les HtmlTableCell objets de la HtmlTableCellCollection collection et réinitialiser la Count propriété 0
sur .
Notes
Cette méthode supprime les cellules d’une ligne, mais elle ne supprime pas la ligne du tableau. Pour supprimer une ligne de la table, veillez également à supprimer l’objet HtmlTableRow qui représente la ligne de la Rows collection du HtmlTable contrôle.