TableCellCollection.Count プロパティとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > TableCellCollection.Count プロパティの意味・解説 

TableCellCollection.Count プロパティ

TableCellCollection 内の TableCell オブジェクトの数を取得します

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

解説解説
使用例使用例

Count プロパティ使用してTableCellCollection 内のセル数を確認する方法の例を次に示します。この例では、TableRow の Cells プロパティは、TableCellCollection クラスインスタンスです。

Sub Button_Click_Coord(sender As Object,
 e As EventArgs)
    
    Dim i As Integer
    For i = 0 To Table1.Rows.Count - 1
        Dim j As Integer
        For j = 0 To (Table1.Rows(i).Cells.Count)
 - 1                
            Table1.Rows(i).Cells(j).Text = "(" &
 j.ToString() & _
                ", " & i.ToString() & ")"
        Next j
    Next i 
End Sub

void Button_Click_Coord(object sender, EventArgs e) 
 {
          
    for (int i=0; i<Table1.Rows.Count; i++)
 
    {          
       for (int j=0; j<Table1.Rows[i].Cells.Count;
 j++) 
       {
                
          Table1.Rows[i].Cells[j].Text = "(" + 
             j.ToString() + ", " + i.ToString() + ")";
                
       }            
    }
 
 }
 
void Button_Click_Coord(Object sender, EventArgs e)
{
    for (int i = 0; i < table1.get_Rows().get_Count();
 i++) {
        for (int j = 0;
            j < table1.get_Rows().get_Item(i).get_Cells().get_Count();
            j++) {
                table1.get_Rows().get_Item(i).get_Cells().get_Item(j).
                    set_Text( "(" + System.Convert.ToString(j) + ",
 "
                    + System.Convert.ToString(i) + ")");
        }
    }
} //Button_Click_Coord
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
TableCellCollection クラス
TableCellCollection メンバ
System.Web.UI.WebControls 名前空間
TableCell クラス
TableRow
Cells
その他の技術情報
Table、TableRow、TableCell の各 Web サーバー コントロール



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

辞書ショートカット

すべての辞書の索引

TableCellCollection.Count プロパティのお隣キーワード
検索ランキング

   

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



TableCellCollection.Count プロパティのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

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

©2025 GRAS Group, Inc.RSS