HtmlTableRowCollection クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
HtmlTableRow コントロールの行を表す HtmlTable オブジェクトのコレクション。 このクラスは継承できません。
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
- 継承
-
HtmlTableRowCollection
- 実装
例
次のコード例では、コレクションに行を追加してコントロールの内容を HtmlTable 動的に生成する方法を HtmlTableRowCollection 示します。 テーブルの Rows プロパティが HtmlTableRowCollection オブジェクトであることに注意してください。
<%@ 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>
注釈
コントロール内の行を HtmlTableRowCollection 表すオブジェクトの HtmlTableRow コレクションをプログラムで管理するには、 クラスを HtmlTable 使用します。 このクラスは、通常、コントロール内 HtmlTable の行の内容を追加、削除、または変更するために使用されます。
Note
HtmlTableコントロールには、オブジェクトのコレクションHtmlTableRowをRows表す プロパティが含まれています。 各 HtmlTableRow 行は、テーブル内の個々の行を表します。 には HtmlTableRow 、オブジェクトの Cells コレクション HtmlTableCell を表す プロパティが含まれています。 これらのオブジェクトは、テーブルの個々のセルを表します。 個々のセルを取得するには、まず、コントロールの HtmlTableRow コレクションから Rows 、セルを含む行を表す オブジェクトを HtmlTable 取得します。 その後、 のHtmlTableCellコレクションから、行内のセルを表す オブジェクトをCellsHtmlTableRow取得できます。
プロパティ
Count |
HtmlTableRow objects in the HtmlTableRowCollection collection. |
IsReadOnly |
HtmlTableRowCollection コレクションが読み取り専用かどうかを示す値を取得します。 |
IsSynchronized |
HtmlTableRowCollection コレクションへのアクセスが同期されている (スレッド セーフである) かどうかを示す値を取得します。 |
Item[Int32] |
指定したインデックス位置にある HtmlTableRow オブジェクトを HtmlTableRowCollection コレクションから削除します。 |
SyncRoot |
HtmlTableRowCollection コレクションへのアクセスを同期するために使用できるオブジェクトを取得します。 |
メソッド
Add(HtmlTableRow) |
指定した HtmlTableRow オブジェクトを HtmlTableRowCollection コレクションの末尾に追加します。 |
Clear() |
HtmlTableRow コレクションからすべての HtmlTableRowCollection オブジェクトを削除します。 |
CopyTo(Array, Int32) |
指定した HtmlTableRowCollection オブジェクトに Array コレクションの項目をコピーします。コピー操作は、配列内の指定したインデックス位置から始まります。 |
Equals(Object) |
指定されたオブジェクトが現在のオブジェクトと等しいかどうかを判断します。 (継承元 Object) |
GetEnumerator() |
IEnumerator コレクションのすべての HtmlTableRow オブジェクトを格納する HtmlTableRowCollection 実装オブジェクトを返します。 |
GetHashCode() |
既定のハッシュ関数として機能します。 (継承元 Object) |
GetType() |
現在のインスタンスの Type を取得します。 (継承元 Object) |
Insert(Int32, HtmlTableRow) |
コレクション内の指定した位置に HtmlTableRow オブジェクトを追加します。 |
MemberwiseClone() |
現在の Object の簡易コピーを作成します。 (継承元 Object) |
Remove(HtmlTableRow) |
指定した HtmlTableRow オブジェクトを HtmlTableRowCollection コレクションから削除します。 |
RemoveAt(Int32) |
指定したインデックス位置にある HtmlTableRow オブジェクトを HtmlTableRowCollection コレクションから削除します。 |
ToString() |
現在のオブジェクトを表す文字列を返します。 (継承元 Object) |
拡張メソッド
Cast<TResult>(IEnumerable) |
IEnumerable の要素を、指定した型にキャストします。 |
OfType<TResult>(IEnumerable) |
指定された型に基づいて IEnumerable の要素をフィルター処理します。 |
AsParallel(IEnumerable) |
クエリの並列化を有効にします。 |
AsQueryable(IEnumerable) |
IEnumerable を IQueryable に変換します。 |
適用対象
こちらもご覧ください
.NET