HtmlTableRowCollection Classe

Definizione

Insieme di oggetti HtmlTableRow che rappresentano le righe di un controllo HtmlTable. La classe non può essere ereditata.

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
Ereditarietà
HtmlTableRowCollection
Implementazioni

Esempio

Nell'esempio di codice seguente viene illustrato come generare dinamicamente il contenuto di un HtmlTable controllo aggiungendo righe a una HtmlTableRowCollection raccolta. Si noti che la proprietà di una tabella è l'oggetto RowsHtmlTableRowCollection .

<%@ 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>

Commenti

Utilizzare la HtmlTableRowCollection classe per gestire a livello di codice una raccolta di HtmlTableRow oggetti che rappresentano le righe in un HtmlTable controllo. Questa classe viene comunemente usata per aggiungere, rimuovere o modificare il contenuto di una riga in un HtmlTable controllo.

Nota

Un HtmlTable controllo contiene una Rows proprietà che rappresenta una raccolta di HtmlTableRow oggetti. Ogni HtmlTableRow rappresenta una singola riga nella tabella. Contiene HtmlTableRow una proprietà che rappresenta una Cells raccolta di HtmlTableCell oggetti. Questi oggetti, a sua volta, rappresentano le singole celle della tabella. Per recuperare una singola cella, ottenere prima di tutto l'oggetto HtmlTableRow , che rappresenta la riga contenente la cella, dall'insieme Rows del HtmlTable controllo. È quindi possibile ottenere l'oggetto HtmlTableCell , che rappresenta la cella nella riga, dall'insieme Cells di HtmlTableRow.

Proprietà

Count

Ottiene il numero di oggetti HtmlTableRow nella raccolta HtmlTableRowCollection.

IsReadOnly

Ottiene un valore che indica se la raccolta HtmlTableRowCollection è di sola lettura.

IsSynchronized

Ottiene un valore che indica se l'accesso all'insieme HtmlTableRowCollection è sincronizzato (thread-safe).

Item[Int32]

Ottiene l'oggetto HtmlTableRow in corrispondenza dell'indice specificato dall'insieme HtmlTableRowCollection.

SyncRoot

Ottiene l'oggetto che può essere utilizzato per sincronizzare l'accesso all'insieme HtmlTableRowCollection.

Metodi

Add(HtmlTableRow)

Aggiunge l'oggetto HtmlTableRow specificato alla fine dell'insieme HtmlTableRowCollection.

Clear()

Rimuove tutti gli oggetti HtmlTableRow dall'insieme HtmlTableRowCollection.

CopyTo(Array, Int32)

Copia gli elementi dall'insieme HtmlTableRowCollection nella matrice Array specificata, a partire dall'indice specificato nella matrice.

Equals(Object)

Determina se l'oggetto specificato è uguale all'oggetto corrente.

(Ereditato da Object)
GetEnumerator()

Restituisce un oggetto implementato IEnumerator contenente tutti gli oggetti HtmlTableRow nell'insieme HtmlTableRowCollection.

GetHashCode()

Funge da funzione hash predefinita.

(Ereditato da Object)
GetType()

Ottiene l'oggetto Type dell'istanza corrente.

(Ereditato da Object)
Insert(Int32, HtmlTableRow)

Aggiunge un oggetto HtmlTableRow nella posizione specificata all'interno dell'insieme.

MemberwiseClone()

Crea una copia superficiale dell'oggetto Object corrente.

(Ereditato da Object)
Remove(HtmlTableRow)

Rimuove l'oggetto HtmlTableRow specificato dall'insieme HtmlTableRowCollection.

RemoveAt(Int32)

Rimuove l'oggetto HtmlTableRow in corrispondenza dell'indice specificato dall'insieme HtmlTableRowCollection.

ToString()

Restituisce una stringa che rappresenta l'oggetto corrente.

(Ereditato da Object)

Metodi di estensione

Cast<TResult>(IEnumerable)

Esegue il cast degli elementi di un oggetto IEnumerable nel tipo specificato.

OfType<TResult>(IEnumerable)

Filtra gli elementi di un oggetto IEnumerable in base a un tipo specificato.

AsParallel(IEnumerable)

Consente la parallelizzazione di una query.

AsQueryable(IEnumerable)

Converte un oggetto IEnumerable in un oggetto IQueryable.

Si applica a

Vedi anche