共用方式為


TableRow.CellControlCollection.Add(Control) 方法

定義

將指定的 Control 物件加入至 TableRow.CellControlCollection 集合中。

public:
 override void Add(System::Web::UI::Control ^ child);
public override void Add (System.Web.UI.Control child);
override this.Add : System.Web.UI.Control -> unit
Public Overrides Sub Add (child As Control)

參數

child
Control

要加入至 ControlTableRow.CellControlCollection

例外狀況

加入的 Control 必須是 TableCell 型別。

範例

下列程式碼範例示範如何建立資料表、以程式設計方式將元素加入資料表,然後在網頁上顯示資料表。 請注意控制項的 TableRow 屬性如何 Cells 代表 TableRow.CellControlCollection 集合,以及 Add 如何使用 方法將儲存格加入資料列。

此程式碼範例是提供給 類別之較大範例的 TableRow 一部分。

// Create more rows for the table.
for (int rowNum = 2; rowNum < 10; rowNum++)
{
    TableRow tempRow = new TableRow();
    for (int cellNum = 0; cellNum < 3; cellNum++)
    {
        TableCell tempCell = new TableCell();
        tempCell.Text = 
            String.Format("({0},{1})", rowNum, cellNum);
        tempRow.Cells.Add(tempCell);
    }
    Table1.Rows.Add(tempRow);
}
' Create more rows for the table.
Dim rowNum As Integer
For rowNum = 2 To 9
    Dim tempRow As New TableRow()
    Dim cellNum As Integer
    For cellNum = 0 To 2
        Dim tempCell As New TableCell()
        tempCell.Text = _
            String.Format("({0},{1})", rowNum, cellNum)
        tempRow.Cells.Add(tempCell)
    Next
    Table1.Rows.Add(tempRow)
Next

備註

加入的控制項只能是 TableCell 物件, ArgumentException 否則會擲回 。

適用於

另請參閱