HtmlTableCellCollection Classe

Definizione

Insieme di oggetti HtmlTableCell che rappresentano le celle di una singola riga di un controllo HtmlTable. La classe non può essere ereditata.

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

Esempio

Nell'esempio di codice seguente viene illustrato come generare dinamicamente il contenuto di un HtmlTable controllo aggiungendo celle a una HtmlTableCellCollection raccolta. Si noti che la Cells proprietà di una riga, rappresentata da un HtmlTableRow oggetto, è la HtmlTableCellCollection raccolta.

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

Commenti

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

Nota

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

Proprietà

Count

Ottiene il numero di oggetti HtmlTableCell nella raccolta HtmlTableCellCollection.

IsReadOnly

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

IsSynchronized

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

Item[Int32]

Ottiene l'oggetto HtmlTableCell in corrispondenza dell'indice specificato dall'insieme HtmlTableCellCollection.

SyncRoot

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

Metodi

Add(HtmlTableCell)

Aggiunge l'oggetto HtmlTableCell specificato alla fine dell'insieme HtmlTableCellCollection.

Clear()

Rimuove tutti gli oggetti HtmlTableCell dall'insieme HtmlTableCellCollection.

CopyTo(Array, Int32)

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

Equals(Object)

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

(Ereditato da Object)
GetEnumerator()

Restituisce un oggetto implementato IEnumerator contenente tutti gli oggetti HtmlTableCell nell'insieme HtmlTableCellCollection.

GetHashCode()

Funge da funzione hash predefinita.

(Ereditato da Object)
GetType()

Ottiene l'oggetto Type dell'istanza corrente.

(Ereditato da Object)
Insert(Int32, HtmlTableCell)

Aggiunge l'oggetto HtmlTableCell specificato in corrispondenza del percorso di indice dell'insieme HtmlTableCellCollection.

MemberwiseClone()

Crea una copia superficiale dell'oggetto Object corrente.

(Ereditato da Object)
Remove(HtmlTableCell)

Rimuove l'oggetto HtmlTableCell specificato dall'insieme HtmlTableCellCollection.

RemoveAt(Int32)

Rimuove l'oggetto HtmlTableCell in corrispondenza dell'indice specificato dall'insieme HtmlTableCellCollection.

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