次の方法で共有


HtmlTableCellCollection.Remove メソッド

指定した HtmlTableCellHtmlTableCellCollection から削除します。

Public Sub Remove( _
   ByVal cell As HtmlTableCell _)
[C#]
public void Remove(HtmlTableCellcell);
[C++]
public: void Remove(HtmlTableCell* cell);
[JScript]
public function Remove(
   cell : HtmlTableCell);

パラメータ

解説

このメソッドを使用して、指定した HtmlTableCellHtmlTableCellCollection から削除します。

メモ    HtmlTableCellCollection に存在しない HtmlTableCell を指定した場合、項目はコレクションから削除されません。

使用例

[Visual Basic, C#, JScript] Remove メソッドを使用して、 HtmlTableCellCollection から HtmlTableCell が表すテーブルの指定したセルを削除する方法の例を次に示します。この例では HtmlTable コントロールの最初の列からセルを削除します。

 
<%@ Page Language="VB" AutoEventWireup="True" %>

<html>
<head>

   <script runat="server">

      Sub Button_Click(sender As Object, e As EventArgs) 

         Dim i As Integer
         Dim cell As HtmlTableCell

         ' Iterate through the rows of the table.
         For i=0 To Table1.Rows.Count - 1
 
            ' Remove the cells from the first column.
            cell = Table1.Rows(i).Cells(0)
            Table1.Rows(i).Cells.Remove(cell)

         Next i

      End Sub

   </script>

</head>
<body>

   <form runat="server">

      <h3>HtmlTableCellCollection Example</h3>

      <table id="Table1" 
             Border="1" 
             BorderColor="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 Column from Table"
             OnServerClick = "Button_Click" 
             runat="server"/>

   </form>

</body>
</html>

[C#] 
<%@ Page Language="C#" AutoEventWireup="True" %>

<html>
<head>

   <script runat="server">

      void Button_Click(Object sender, EventArgs e) 
      {

         // Iterate through the rows of the table.
         for (int i=0; i<=Table1.Rows.Count - 1; i++)
         {
 
            // Remove the cells from the first column.
            HtmlTableCell cell = Table1.Rows[i].Cells[0];
            Table1.Rows[i].Cells.Remove(cell);

         }

      }

   </script>

</head>
<body>

   <form runat="server">

      <h3>HtmlTableCellCollection Example</h3>

      <table id="Table1" 
             Border="1" 
             BorderColor="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 Column from Table"
             OnServerClick = "Button_Click" 
             runat="server"/>

   </form>

</body>
</html>

[JScript] 
<%@ Page Language="JScript" AutoEventWireup="True" %>

<html>
<head>

   <script runat="server">

      function Button_Click(sender : Object, e : EventArgs) 
      {

         // Iterate through the rows of the table.
         for (var i : int = 0; i <= Table1.Rows.Count - 1; i++)
         {
 
            // Remove the cells from the first column.
            var cell : HtmlTableCell = Table1.Rows[i].Cells[0];
            Table1.Rows[i].Cells.Remove(cell);

         }

      }

   </script>

</head>
<body>

   <form runat="server">

      <h3>HtmlTableCellCollection Example</h3>

      <table id="Table1" 
             Border="1" 
             BorderColor="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 Column from Table"
             OnServerClick = "Button_Click" 
             runat="server"/>

   </form>

</body>
</html>

[C++] C++ のサンプルはありません。Visual Basic、C#、および JScript のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

参照

HtmlTableCellCollection クラス | HtmlTableCellCollection メンバ | System.Web.UI.HtmlControls 名前空間 | RemoveAt | Cells | HtmlTableRow