HtmlTableRowCollection 类

定义

HtmlTableRow 对象的集合,这些对象表示 HtmlTable 控件中的行。 此类不能被继承。

public ref class HtmlTableRowCollection sealed : System::Collections::ICollection
public sealed class HtmlTableRowCollection : System.Collections.ICollection
type HtmlTableRowCollection = class
    interface ICollection
    interface IEnumerable
Public NotInheritable Class HtmlTableRowCollection
Implements ICollection
继承
HtmlTableRowCollection
实现

示例

下面的代码示例演示如何通过将行添加到HtmlTableRowCollection集合来动态生成控件的内容HtmlTable。 请注意, Rows 表的 属性是 HtmlTableRowCollection 对象。

<%@ 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 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 xmlns="http://www.w3.org/1999/xhtml" >
<head>
   <title>HtmlTableRowCollection Example</title>
</head>
<body>

   <form id="form1" runat="server">

      <h3>HtmlTableRowCollection Example</h3>

      <table id="Table1" 
             style="border-width:1; border-color:Black; padding:5"
             cellspacing="0"
             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>

        

      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="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 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 xmlns="http://www.w3.org/1999/xhtml" >
<head>
   <title>HtmlTableRowCollection Example</title>
</head>
<body>

   <form id="form1" runat="server">

      <h3>HtmlTableRowCollection Example</h3>

      <table id="Table1" 
             style="border-width:1; border-color:Black; padding:5"
             cellspacing="0"
             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>

        

      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>

注解

HtmlTableRowCollection使用 类以编程方式管理表示控件中HtmlTable行的 对象的集合HtmlTableRow。 此类通常用于添加、删除或修改控件中 HtmlTable 行的内容。

注意

控件 HtmlTable 包含一个 Rows 属性,该属性表示 对象的集合 HtmlTableRow 。 每个 HtmlTableRow 表示表中的单个行。 包含 HtmlTableRow 一个 Cells 属性,该属性表示 对象的集合 HtmlTableCell 。 这些对象反过来表示表格的各个单元格。 若要检索单个单元格,请首先从 Rows 控件的集合中获取 HtmlTableRow 表示包含该单元格的行的 HtmlTable 对象。 然后,可以从 的集合中获取 HtmlTableCell 表示行 Cells 中的单元格的 HtmlTableRow对象。

属性

Count

获取 HtmlTableRowCollection 集合中 HtmlTableRow 对象的数目。

IsReadOnly

获取指示 HtmlTableRowCollection 集合是否为只读的值。

IsSynchronized

获取一个值,该值指示对 HtmlTableRowCollection 集合的访问是否同步(线程安全)。

Item[Int32]

获取 HtmlTableRow 集合中指定索引处的 HtmlTableRowCollection 对象。

SyncRoot

获取可用于同步 HtmlTableRowCollection 集合访问的对象。

方法

Add(HtmlTableRow)

将指定的 HtmlTableRow 对象追加到 HtmlTableRowCollection 集合的结尾。

Clear()

HtmlTableRowCollection 集合中移除所有 HtmlTableRow 对象。

CopyTo(Array, Int32)

HtmlTableRowCollection 集合中的项复制到指定的 Array 对象,从数组中的指定索引处开始。

Equals(Object)

确定指定对象是否等于当前对象。

(继承自 Object)
GetEnumerator()

返回一个实现了 IEnumerator 的对象,其中包含 HtmlTableRow 集合内的所有 HtmlTableRowCollection 对象。

GetHashCode()

作为默认哈希函数。

(继承自 Object)
GetType()

获取当前实例的 Type

(继承自 Object)
Insert(Int32, HtmlTableRow)

HtmlTableRow 对象添加到集合中的指定位置。

MemberwiseClone()

创建当前 Object 的浅表副本。

(继承自 Object)
Remove(HtmlTableRow)

HtmlTableRow 集合中移除指定的 HtmlTableRowCollection 对象。

RemoveAt(Int32)

移除 HtmlTableRow 集合中指定索引处的 HtmlTableRowCollection 对象。

ToString()

返回表示当前对象的字符串。

(继承自 Object)

扩展方法

Cast<TResult>(IEnumerable)

IEnumerable 的元素强制转换为指定的类型。

OfType<TResult>(IEnumerable)

根据指定类型筛选 IEnumerable 的元素。

AsParallel(IEnumerable)

启用查询的并行化。

AsQueryable(IEnumerable)

IEnumerable 转换为 IQueryable

适用于

另请参阅