HtmlTableCellCollection.Clear Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Usuwa wszystkie HtmlTableCell obiekty z kolekcji HtmlTableCellCollection .
public:
void Clear();
public void Clear ();
member this.Clear : unit -> unit
Public Sub Clear ()
Przykłady
Poniższy przykład kodu pokazuje, jak za pomocą Clear metody usunąć wszystkie elementy z HtmlTableCellCollection kolekcji. Nowe wpisy są następnie dodawane do kolekcji i wyświetlane w kontrolce HtmlTable .
<%@ 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>
Uwagi
Użyj tej metody, aby usunąć wszystkie obiekty z HtmlTableCellCollection kolekcji i zresetować Count właściwość do 0
.HtmlTableCell
Uwaga
Ta metoda usuwa komórki z wiersza, ale nie usuwa wiersza z tabeli. Aby usunąć wiersz z tabeli, należy również usunąć HtmlTableRow obiekt reprezentujący wiersz z Rows kolekcji kontrolki HtmlTable .