TableRow.CellControlCollection.Add(Control) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Ajoute l'objet Control spécifié à la collection 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)
Paramètres
- child
- Control
Control à ajouter à TableRow.CellControlCollection.
Exceptions
Exemples
L’exemple de code suivant montre comment créer une table, ajouter des éléments à la table par programmation, puis afficher le tableau sur la page Web. Notez comment la Cells propriété du TableRow contrôle représente une TableRow.CellControlCollection collection et comment la Add méthode est utilisée pour ajouter des cellules à la ligne.
Cet exemple de code fait partie d’un exemple plus grand fourni pour la TableRow classe.
// 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
Remarques
Le contrôle ajouté ne peut être qu’un TableCell objet ; sinon, un ArgumentException objet est levée.