HtmlTableRowCollectionとは? わかりやすく解説

HtmlTableRowCollection クラス

HtmlTable コントロールの行を表す HtmlTableRow オブジェクトコレクション。このクラス継承できません。

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

Public NotInheritable Class
 HtmlTableRowCollection
    Implements ICollection, IEnumerable
Dim instance As HtmlTableRowCollection
public sealed class HtmlTableRowCollection
 : ICollection, IEnumerable
public ref class HtmlTableRowCollection sealed
 : ICollection, IEnumerable
public final class HtmlTableRowCollection implements
 ICollection, IEnumerable
public final class HtmlTableRowCollection implements
 ICollection, IEnumerable
解説解説

HtmlTableRowCollection クラス使用してHtmlTable コントロール内の行を表す HtmlTableRow オブジェクトコレクションプログラム管理します通常、このクラスは、HtmlTable コントロールの行の内容追加削除、または変更使用します

メモメモ

HtmlTable コントロールには、HtmlTableRow オブジェクトコレクションを表す Rows プロパティ含まれます。HtmlTableRow は、テーブル内の各行表しますHtmlTableRow には、HtmlTableCell オブジェクトコレクションを表す Cells プロパティ含まれます。これらのオブジェクトは、テーブル内のセル順番表します。各セル取得するには、最初に HtmlTable コントロールRows コレクションから、セル格納している行を表す HtmlTableRow オブジェクト取得しますその後HtmlTableRowCells コレクションから、行のセルを表す HtmlTableCell オブジェクト取得できます

使用例使用例

HtmlTableRowCollection コレクションに行を追加してHtmlTable コントロール内容動的に生成する方法次のコード例示しますテーブルRows プロパティHtmlTableRowCollection オブジェクトであることに注意してください

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

<script runat="server">

  Sub Page_Load(ByVal sender As
 Object, ByVal e As EventArgs)

    Dim i As Integer
    Dim j As Integer
    Dim row As HtmlTableRow
    Dim cell As HtmlTableCell

    ' Get the number of rows and columns selected by the user.
    Dim numrows As Integer
 = CInt(Select1.Value)
    Dim numcells As Integer
 = CInt(Select2.Value)

    ' Iterate through the rows.
    For j = 0 To numrows - 1

      ' Create a new row and add it to the Rows collection.
      row = New HtmlTableRow()

      ' Provide a different background color for alternating rows.
      If (j Mod 2) = 1 Then
        row.BgColor = "Gray"
      End If

      ' Iterate through the cells of a row.
      For i = 0 To numcells - 1
           
        ' Create a new cell and add it to the Cells collection.
        cell = New HtmlTableCell()
        cell.Controls.Add(New LiteralControl("row
 " & _
                                          j.ToString() & _
                                          ", cell "
 & _
                                          i.ToString()))
        row.Cells.Add(cell)
            
      Next i

      Table1.Rows.Add(row)
         
    Next j
      
  End Sub

</script>

<html>
<head>
   <title>HtmlTableRowCollection Example</title>
</head>
<body>

   <form runat="server">

      <h3>HtmlTableRowCollection Example</h3>

      <table id="Table1" 
             cellpadding="5" 
             cellspacing="0" 
             border="1" 
             bordercolor="black" 
             runat="server"/>
        
      <hr>

      Select the number of rows and
 columns to create: <br><br>

      Table rows:
      <select id="Select1" 
              runat="server">

         <option value="1">1</option>
         <option value="2">2</option>
         <option value="3">3</option>
         <option value="4">4</option>
         <option value="5">5</option>

      </select>

      &nbsp;&nbsp;

      Table cells:
      <select id="Select2" 
              runat="server">

         <option value="1">1</option>
         <option value="2">2</option>
         <option value="3">3</option>
         <option value="4">4</option>
         <option value="5">5</option>

      </select>
       
      <br><br>
  
      <input type="submit" 
             value="Generate Table" 
             runat="server"/>

   </form>

</body>
</html>
<%@ Page Language="C#" AutoEventWireup="True" %>

 <script runat="server">

   void Page_Load(Object sender, EventArgs e)
   {

     // Get the number of rows and columns selected by the user.
     int numrows = Convert.ToInt32(Select1.Value);
     int numcells = Convert.ToInt32(Select2.Value);

     // Iterate through the rows.
     for (int j = 0; j < numrows; j++)
     {

       // Create a new row and add it to the Rows collection.
       HtmlTableRow row = new HtmlTableRow();

       // Provide a different background color for alternating rows.
       if (j % 2 == 1)
         row.BgColor = "Gray";

       // Iterate through the cells of a row.
       for (int i = 0; i < numcells; i++)
       {
         // Create a new cell and add it to the Cells collection.
         HtmlTableCell cell = new HtmlTableCell();
         cell.Controls.Add(new LiteralControl("row "
 +
                           j.ToString() +
                           ", cell " +
                           i.ToString()));
         row.Cells.Add(cell);
       }
       Table1.Rows.Add(row);
     }
   }

</script>

<html>
<head>
   <title>HtmlTableRowCollection Example</title>
</head>
<body>

   <form runat="server">

      <h3>HtmlTableRowCollection Example</h3>

      <table id="Table1" 
             cellpadding="5" 
             cellspacing="0" 
             border="1" 
             bordercolor="black" 
             runat="server"/>
        
      <hr>

      Select the number of rows and columns to create: <br><br>

      Table rows:
      <select id="Select1" 
              runat="server">

         <option value="1">1</option>
         <option value="2">2</option>
         <option value="3">3</option>
         <option value="4">4</option>
         <option value="5">5</option>

      </select>

      &nbsp;&nbsp;

      Table cells:
      <select id="Select2" 
              runat="server">

         <option value="1">1</option>
         <option value="2">2</option>
         <option value="3">3</option>
         <option value="4">4</option>
         <option value="5">5</option>

      </select>
       
      <br><br>
  
      <input type="submit" 
             value="Generate Table" 
             runat="server"/>

   </form>

</body>
</html>
<%@ Page Language="JScript" AutoEventWireup="True" %>

<script runat="server">

  function Page_Load(sender, e : EventArgs) 
  {

     // Get the number of rows and columns selected by the user.
     var numrows : int = Convert.ToInt32(Select1.Value);
     var numcells : int = Convert.ToInt32(Select2.Value);

     // Iterate through the rows.
     for (var j : int =0;
 j<numrows; j++) 
     {

        // Create a new row and add it to the Rows collection.
        var row : HtmlTableRow = new HtmlTableRow();

        // Provide a different background color for alternating rows.
        if (j%2 == 1)
            row.BgColor="Gray";

        // Iterate through the cells of a row.
        for (var i : int
 =0; i<numcells; i++) 
        {
           // Create a new cell and add it to the Cells collection.
           var cell : HtmlTableCell = new HtmlTableCell();
           cell.Controls.Add(new LiteralControl("row "
 + 
                                             j.ToString() + 
                                             ", cell " +
                                             i.ToString()));
           row.Cells.Add(cell);
        }
        Table1.Rows.Add(row);
     }
  }

</script>

<html>
<head>
   <title>HtmlTableRowCollection Example</title>
</head>
<body>

   <form runat="server">

      <h3>HtmlTableRowCollection Example</h3>

      <table id="Table1" 
             cellpadding="5" 
             cellspacing="0" 
             border="1" 
             bordercolor="black" 
             runat="server"/>
        
      <hr>

      Select the number of rows and columns to create: <br><br>

      Table rows:
      <select id="Select1" 
              runat="server">

         <option value="1">1</option>
         <option value="2">2</option>
         <option value="3">3</option>
         <option value="4">4</option>
         <option value="5">5</option>

      </select>

      &nbsp;&nbsp;

      Table cells:
      <select id="Select2" 
              runat="server">

         <option value="1">1</option>
         <option value="2">2</option>
         <option value="3">3</option>
         <option value="4">4</option>
         <option value="5">5</option>

      </select>
       
      <br><br>
  
      <input type="submit" 
             value="Generate Table" 
             runat="server"/>

   </form>

</body>
</html>
.NET Framework のセキュリティ.NET Frameworkセキュリティ
継承階層継承階層
System.Object
  System.Web.UI.HtmlControls.HtmlTableRowCollection
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
HtmlTableRowCollection メンバ
System.Web.UI.HtmlControls 名前空間
HtmlTable クラス
HtmlTable.Rows プロパティ
HtmlTableRow クラス
HtmlTableRow.Cells プロパティ
HtmlTableCell クラス

HtmlTableRowCollection プロパティ


パブリック プロパティパブリック プロパティ

  名前 説明
パブリック プロパティ Count HtmlTableRowCollection コレクション内の HtmlTableRow オブジェクトの数を取得します
パブリック プロパティ IsReadOnly HtmlTableRowCollection コレクション読み取り専用かどうかを示す値を取得します
パブリック プロパティ IsSynchronized HtmlTableRowCollection コレクションへのアクセス同期されている (スレッド セーフである) かどうかを示す値を取得します
パブリック プロパティ Item 指定したインデックス位置にある HtmlTableRow オブジェクトHtmlTableRowCollection コレクションから削除します
パブリック プロパティ SyncRoot HtmlTableRowCollection コレクションへのアクセス同期するために使用できるオブジェクト取得します
参照参照

関連項目

HtmlTableRowCollection クラス
System.Web.UI.HtmlControls 名前空間
HtmlTable クラス
HtmlTable.Rows プロパティ
HtmlTableRow クラス
HtmlTableRow.Cells プロパティ
HtmlTableCell クラス

HtmlTableRowCollection メソッド


パブリック メソッドパブリック メソッド

( プロテクト メソッド参照)
  名前 説明
パブリック メソッド Add 指定した HtmlTableRow オブジェクトを HtmlTableRowCollection コレクション末尾追加します
パブリック メソッド Clear HtmlTableRowCollection コレクションからすべての HtmlTableRow オブジェクト削除します
パブリック メソッド CopyTo 指定した System.Array オブジェクトHtmlTableRowCollection コレクションの項目をコピーしますコピー操作は、配列内の指定したインデックス位置から始まります
パブリック メソッド Equals  オーバーロードされます2 つObject インスタンス等しかどうか判断します。 ( Object から継承されます。)
パブリック メソッド GetEnumerator HtmlTableRowCollection コレクションすべての HtmlTableRow オブジェクト格納する System.Collections.IEnumerator 実装オブジェクト返します
パブリック メソッド GetHashCode  特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用適してます。 ( Object から継承されます。)
パブリック メソッド GetType  現在のインスタンスType取得します。 ( Object から継承されます。)
パブリック メソッド Insert コレクション内の指定した位置HtmlTableRow オブジェクト追加します
パブリック メソッド ReferenceEquals  指定した複数Object インスタンス同一かどうか判断します。 ( Object から継承されます。)
パブリック メソッド Remove 指定した HtmlTableRow オブジェクトHtmlTableRowCollection コレクションから削除します
パブリック メソッド RemoveAt 指定したインデックス位置にある HtmlTableRow オブジェクトHtmlTableRowCollection コレクションから削除します
パブリック メソッド ToString  現在の Object を表す String返します。 ( Object から継承されます。)
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

HtmlTableRowCollection クラス
System.Web.UI.HtmlControls 名前空間
HtmlTable クラス
HtmlTable.Rows プロパティ
HtmlTableRow クラス
HtmlTableRow.Cells プロパティ
HtmlTableCell クラス

HtmlTableRowCollection メンバ

HtmlTable コントロールの行を表す HtmlTableRow オブジェクトコレクション。このクラス継承できません。

HtmlTableRowCollection データ型公開されるメンバを以下の表に示します


パブリック プロパティパブリック プロパティ
  名前 説明
パブリック プロパティ Count HtmlTableRowCollection コレクション内の HtmlTableRow オブジェクトの数を取得します
パブリック プロパティ IsReadOnly HtmlTableRowCollection コレクション読み取り専用かどうかを示す値を取得します
パブリック プロパティ IsSynchronized HtmlTableRowCollection コレクションへのアクセス同期されている (スレッド セーフである) かどうかを示す値を取得します
パブリック プロパティ Item 指定したインデックス位置にある HtmlTableRow オブジェクトHtmlTableRowCollection コレクションから削除します
パブリック プロパティ SyncRoot HtmlTableRowCollection コレクションへのアクセス同期するために使用できるオブジェクト取得します
パブリック メソッドパブリック メソッド
( プロテクト メソッド参照)
  名前 説明
パブリック メソッド Add 指定した HtmlTableRow オブジェクトを HtmlTableRowCollection コレクション末尾追加します
パブリック メソッド Clear HtmlTableRowCollection コレクションからすべての HtmlTableRow オブジェクト削除します
パブリック メソッド CopyTo 指定した System.Array オブジェクトHtmlTableRowCollection コレクションの項目をコピーしますコピー操作は、配列内の指定したインデックス位置から始まります
パブリック メソッド Equals  オーバーロードされます2 つObject インスタンス等しかどうか判断します。 (Object から継承されます。)
パブリック メソッド GetEnumerator HtmlTableRowCollection コレクションすべての HtmlTableRow オブジェクト格納する System.Collections.IEnumerator 実装オブジェクト返します
パブリック メソッド GetHashCode  特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用適してます。 (Object から継承されます。)
パブリック メソッド GetType  現在のインスタンスType取得します。 (Object から継承されます。)
パブリック メソッド Insert コレクション内の指定した位置HtmlTableRow オブジェクト追加します
パブリック メソッド ReferenceEquals  指定した複数Object インスタンス同一かどうか判断します。 (Object から継承されます。)
パブリック メソッド Remove 指定した HtmlTableRow オブジェクトHtmlTableRowCollection コレクションから削除します
パブリック メソッド RemoveAt 指定したインデックス位置にある HtmlTableRow オブジェクトHtmlTableRowCollection コレクションから削除します
パブリック メソッド ToString  現在の Object を表す String返します。 (Object から継承されます。)
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

HtmlTableRowCollection クラス
System.Web.UI.HtmlControls 名前空間
HtmlTable クラス
HtmlTable.Rows プロパティ
HtmlTableRow クラス
HtmlTableRow.Cells プロパティ
HtmlTableCell クラス



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「HtmlTableRowCollection」の関連用語

HtmlTableRowCollectionのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



HtmlTableRowCollectionのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS