HtmlTableRowCollection Sınıf
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Denetimin HtmlTableRow satırlarını HtmlTable temsil eden nesne koleksiyonu. Bu sınıf devralınamaz.
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
- Devralma
-
HtmlTableRowCollection
- Uygulamalar
Örnekler
Aşağıdaki kod örneği, bir koleksiyona satır HtmlTableRowCollection ekleyerek denetimin HtmlTable içeriğini dinamik olarak oluşturmayı gösterir. Rows Tablonun özelliğinin nesnesi olduğuna HtmlTableRowCollection dikkat edin.
<%@ 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>
Açıklamalar
Bir denetimdeki HtmlTableRowCollection satırları HtmlTable temsil eden nesne koleksiyonunu HtmlTableRow program aracılığıyla yönetmek için sınıfını kullanın. Bu sınıf genellikle denetimdeki bir satırın HtmlTable içeriğini eklemek, kaldırmak veya değiştirmek için kullanılır.
Not
DenetimHtmlTable, nesne koleksiyonunu HtmlTableRow temsil eden bir özellik içerirRows. Her HtmlTableRow biri tablodaki tek bir satırı temsil eder. bir HtmlTableRow nesne koleksiyonunu HtmlTableCell temsil eden bir özellik içerirCells. Bu nesneler de tablonun tek tek hücrelerini temsil eder. Tek bir hücreyi almak için, önce hücreyi HtmlTableRow içeren satırı temsil eden nesneyi denetimin RowsHtmlTable koleksiyonundan alın. Daha sonra, satırındaki HtmlTableCell hücreyi temsil eden nesnesini koleksiyonundan CellsHtmlTableRowalabilirsiniz.
Özellikler
Count |
Koleksiyondaki HtmlTableRowCollection nesne sayısını HtmlTableRow alır. |
IsReadOnly |
Koleksiyonun HtmlTableRowCollection salt okunur olup olmadığını belirten bir değer alır. |
IsSynchronized |
Koleksiyona erişimin HtmlTableRowCollection eşitlenip eşitlenmediğini belirten bir değer alır (iş parçacığı güvenli). |
Item[Int32] |
HtmlTableRow Belirtilen dizindeki nesnesini koleksiyondan HtmlTableRowCollection alır. |
SyncRoot |
Koleksiyona erişimi HtmlTableRowCollection eşitlemek için kullanılabilecek nesneyi alır. |
Yöntemler
Add(HtmlTableRow) |
Belirtilen HtmlTableRow nesneyi koleksiyonun HtmlTableRowCollection sonuna ekler. |
Clear() |
Koleksiyondaki HtmlTableRowCollection tüm HtmlTableRow nesneleri kaldırır. |
CopyTo(Array, Int32) |
Koleksiyondaki öğeleri, dizideki HtmlTableRowCollection belirtilen dizinden başlayarak belirtilen Array nesneye kopyalar. |
Equals(Object) |
Belirtilen nesnenin geçerli nesneye eşit olup olmadığını belirler. (Devralındığı yer: Object) |
GetEnumerator() |
IEnumeratorKoleksiyondaki HtmlTableRowCollection tüm HtmlTableRow nesneleri içeren bir -implemented nesnesi döndürür. |
GetHashCode() |
Varsayılan karma işlevi işlevi görür. (Devralındığı yer: Object) |
GetType() |
Type Geçerli örneğini alır. (Devralındığı yer: Object) |
Insert(Int32, HtmlTableRow) |
Koleksiyonda belirtilen konuma bir HtmlTableRow nesne ekler. |
MemberwiseClone() |
Geçerli Objectöğesinin sığ bir kopyasını oluşturur. (Devralındığı yer: Object) |
Remove(HtmlTableRow) |
Belirtilen HtmlTableRow nesneyi koleksiyondan HtmlTableRowCollection kaldırır. |
RemoveAt(Int32) |
HtmlTableRow Belirtilen dizindeki nesneyi koleksiyondan HtmlTableRowCollection kaldırır. |
ToString() |
Geçerli nesneyi temsil eden dizeyi döndürür. (Devralındığı yer: Object) |
Uzantı Metotları
Cast<TResult>(IEnumerable) |
öğesinin IEnumerable öğelerini belirtilen türe atar. |
OfType<TResult>(IEnumerable) |
Bir öğesinin IEnumerable öğelerini belirtilen türe göre filtreler. |
AsParallel(IEnumerable) |
Sorgunun paralelleştirilmesini sağlar. |
AsQueryable(IEnumerable) |
bir IEnumerable öğesini öğesine IQueryabledönüştürür. |