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