HtmlTable.HtmlTableRowControlCollection クラス

定義

HtmlTableRow コントロールの行である HtmlTable オブジェクトのコレクションを表します。

protected: ref class HtmlTable::HtmlTableRowControlCollection : System::Web::UI::ControlCollection
protected class HtmlTable.HtmlTableRowControlCollection : System.Web.UI.ControlCollection
Protected Class HtmlTable.HtmlTableRowControlCollection
Inherits ControlCollection
継承
HtmlTable.HtmlTableRowControlCollection

次のコード例では、 メソッドをオーバーライドAddするカスタムHtmlTable.HtmlTableRowControlCollectionを作成して、行がテーブルに追加されるときに、常にテーブルの行コレクションの先頭に追加されるようにする方法を示します。

<%@ Register TagPrefix="aspSample" Namespace="Samples.AspNet.CS.Controls" Assembly="Samples.AspNet.CS" %>
<%@ 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">
<html xmlns="http://www.w3.org/1999/xhtml" >
  <head>
    <title>Custom HtmlTable - CustomHtmlTableRowControlCollection Example</title>
  </head>
  <body>
    <form id="Form1" 
          method="post" 
          runat="server">
      <h3>Custom HtmlTable - CustomHtmlTableRowControlCollection Example</h3>
      
      <aspSample:CustomHtmlTableRowControlCollection 
        id="HtmlTable1" 
        name="HtmlTable1" 
        runat="server" 
        border="1"
        cellSpacing="0" 
        cellPadding="5">
        <tr>
          <td>1,1</td>
          <td>1,2</td>
          <td>1,3</td>
        </tr>
        <tr>
          <td>2,1</td>
          <td>2,2</td>
          <td>2,3</td>
        </tr>
        <tr>
          <td>3,1</td>
          <td>3,2</td>
          <td>3,3</td>
        </tr>
      </aspSample:CustomHtmlTableRowControlCollection>

    </form>

  </body>
</html>
<%@ Register TagPrefix="aspSample" Namespace="Samples.AspNet.VB.Controls" Assembly="Samples.AspNet.VB" %>
<%@ 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">
<html xmlns="http://www.w3.org/1999/xhtml" >
  <head>
    <title>Custom HtmlTable - CustomHtmlTableRowControlCollection Example</title>
  </head>
  <body>
    <form id="Form1" 
          method="post" 
          runat="server">
      <h3>Custom HtmlTable - CustomHtmlTableRowControlCollection Example</h3>
      
      <aspSample:CustomHtmlTableRowControlCollection 
        id="HtmlTable1" 
        name="HtmlTable1" 
        runat="server" 
        border="1"
        cellSpacing="0" 
        cellPadding="5">
        <tr>
          <td>1,1</td>
          <td>1,2</td>
          <td>1,3</td>
        </tr>
        <tr>
          <td>2,1</td>
          <td>2,2</td>
          <td>2,3</td>
        </tr>
        <tr>
          <td>3,1</td>
          <td>3,2</td>
          <td>3,3</td>
        </tr>
      </aspSample:CustomHtmlTableRowControlCollection>

    </form>

  </body>
</html>
using System.Web;
using System.Web.UI;
using System.Security.Permissions;

namespace Samples.AspNet.CS.Controls
{
    [AspNetHostingPermission(SecurityAction.Demand, Level = AspNetHostingPermissionLevel.Minimal)]
    public class CustomHtmlTableRowControlCollection : System.Web.UI.HtmlControls.HtmlTable
    {

       protected override ControlCollection CreateControlCollection()
       {

         return new MyHtmlTableRowControlCollection(this);
       }

       protected class MyHtmlTableRowControlCollection : ControlCollection
       {

         internal MyHtmlTableRowControlCollection(Control owner) : base(owner) { }

         public override void Add(Control child)
         {

           // Always add new rows at the top of the table.
           base.AddAt(0, child);
         }
       }
    }
}
Imports System.Web
Imports System.Web.UI
Imports System.Security.Permissions

Namespace Samples.AspNet.VB.Controls
    <AspNetHostingPermission(SecurityAction.Demand, Level:=AspNetHostingPermissionLevel.Minimal)> _
    Public NotInheritable Class CustomHtmlTableRowControlCollection
        Inherits System.Web.UI.HtmlControls.HtmlTable

        Protected Overrides Function CreateControlCollection() As System.Web.UI.ControlCollection

            Return New MyHtmlTableRowControlCollection(Me)

        End Function

        Protected Class MyHtmlTableRowControlCollection
            Inherits ControlCollection

            Friend Sub New(ByVal owner As Control)

                MyBase.New(owner)

            End Sub

            Public Overrides Sub Add(ByVal child As Control)

                ' Always add new rows at the top of the table.
                MyBase.AddAt(0, child)

            End Sub

        End Class

    End Class

End Namespace

注釈

クラスは HtmlTable.HtmlTableRowControlCollection 、コントロールのオブジェクトの HtmlTableRow コレクションを HtmlTable 表します。 コントロールは、 メソッドを使用してコレクションの末尾に追加することも、 メソッドを使用 Add してコレクション AddAt 内の指定したインデックス位置に追加することもできます。 型 HtmlTableRow のコントロールのみをコレクションに HtmlTable.HtmlTableRowControlCollection 追加できます。

プロパティ

Count

指定された ASP.NET サーバー コントロールの ControlCollection オブジェクト内にあるサーバー コントロールの数を取得します。

(継承元 ControlCollection)
IsReadOnly

ControlCollection オブジェクトが読み取り専用かどうかを示す値を取得します。

(継承元 ControlCollection)
IsSynchronized

ControlCollection オブジェクトが同期されているかどうかを示す値を取得します。

(継承元 ControlCollection)
Item[Int32]

ControlCollection オブジェクトの指定されたインデックス位置にあるサーバー コントロールへの参照を取得します。

(継承元 ControlCollection)
Owner

ControlCollection オブジェクトが属する ASP.NET サーバー コントロールを取得します。

(継承元 ControlCollection)
SyncRoot

コントロールのコレクションへのアクセスを同期するために使用するオブジェクトを取得します。

(継承元 ControlCollection)

メソッド

Add(Control)

指定した Control オブジェクトをコレクションに追加します。

AddAt(Int32, Control)

指定した Control オブジェクトをコレクションに追加します。 新しいコントロールが、指定したインデックス位置の配列に追加されます。

Clear()

現在のサーバー コントロールの ControlCollection オブジェクトからすべてのコントロールを削除します。

(継承元 ControlCollection)
Contains(Control)

指定したサーバー コントロールが親サーバー コントロールの ControlCollection オブジェクト内にあるかどうかを確認します。

(継承元 ControlCollection)
CopyTo(Array, Int32)

ControlCollection オブジェクトに格納されている子コントロールを、Array オブジェクトに、Array 内の指定したインデックス位置からコピーします。

(継承元 ControlCollection)
Equals(Object)

指定されたオブジェクトが現在のオブジェクトと等しいかどうかを判断します。

(継承元 Object)
GetEnumerator()

ControlCollection オブジェクトを繰り返し処理できる列挙子を取得します。

(継承元 ControlCollection)
GetHashCode()

既定のハッシュ関数として機能します。

(継承元 Object)
GetType()

現在のインスタンスの Type を取得します。

(継承元 Object)
IndexOf(Control)

コレクション内の指定した Control オブジェクトのインデックスを取得します。

(継承元 ControlCollection)
MemberwiseClone()

現在の Object の簡易コピーを作成します。

(継承元 Object)
Remove(Control)

親サーバー コントロールの ControlCollection オブジェクトから、指定したサーバー コントロールを削除します。

(継承元 ControlCollection)
RemoveAt(Int32)

ControlCollection オブジェクトから、指定したインデックス位置にある子コントロールを削除します。

(継承元 ControlCollection)
ToString()

現在のオブジェクトを表す文字列を返します。

(継承元 Object)

拡張メソッド

Cast<TResult>(IEnumerable)

IEnumerable の要素を、指定した型にキャストします。

OfType<TResult>(IEnumerable)

指定された型に基づいて IEnumerable の要素をフィルター処理します。

AsParallel(IEnumerable)

クエリの並列化を有効にします。

AsQueryable(IEnumerable)

IEnumerableIQueryable に変換します。

適用対象

こちらもご覧ください