HtmlTableCellCollection 类

定义

HtmlTableCell 对象的集合,这些对象表示 HtmlTable 控件的一个行中的单元格。 此类不能被继承。

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

示例

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

<%@ 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>HtmlTableCellCollection Example</title>
</head>
<body>

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

      <h3>HtmlTableCellCollection 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>HtmlTableCellCollection Example</title>
</head>
<body>

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

      <h3>HtmlTableCellCollection 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>

注解

HtmlTableCellCollection使用 类以编程方式管理对象的集合HtmlTableCell,这些对象表示控件中HtmlTable单个行的单元格。 此类通常用于添加、删除或修改控件行 HtmlTable 中单元格的内容。

注意

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

属性

Count

获取 HtmlTableCellCollection 集合中 HtmlTableCell 对象的数目。

IsReadOnly

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

IsSynchronized

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

Item[Int32]

获取 HtmlTableCell 集合中指定索引处的 HtmlTableCellCollection 对象。

SyncRoot

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

方法

Add(HtmlTableCell)

将指定的 HtmlTableCell 对象追加到 HtmlTableCellCollection 集合的结尾。

Clear()

HtmlTableCellCollection 集合中移除所有 HtmlTableCell 对象。

CopyTo(Array, Int32)

HtmlTableCellCollection 中的指定索引开始,将 Array 集合中的项复制到指定的 Array

Equals(Object)

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

(继承自 Object)
GetEnumerator()

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

GetHashCode()

作为默认哈希函数。

(继承自 Object)
GetType()

获取当前实例的 Type

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

HtmlTableCell 集合的指定索引位置添加指定的 HtmlTableCellCollection 对象。

MemberwiseClone()

创建当前 Object 的浅表副本。

(继承自 Object)
Remove(HtmlTableCell)

HtmlTableCell 集合中移除指定的 HtmlTableCellCollection 对象。

RemoveAt(Int32)

移除 HtmlTableCell 集合中指定索引处的 HtmlTableCellCollection 对象。

ToString()

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

(继承自 Object)

扩展方法

Cast<TResult>(IEnumerable)

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

OfType<TResult>(IEnumerable)

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

AsParallel(IEnumerable)

启用查询的并行化。

AsQueryable(IEnumerable)

IEnumerable 转换为 IQueryable

适用于

另请参阅