次の方法で共有


DataBoundControlAdapter.Control プロパティ

定義

このコントロール アダプターに関連付けられた DataBoundControl オブジェクトへの、厳密に型指定された参照を取得します。

protected:
 property System::Web::UI::WebControls::DataBoundControl ^ Control { System::Web::UI::WebControls::DataBoundControl ^ get(); };
protected System.Web.UI.WebControls.DataBoundControl Control { get; }
member this.Control : System.Web.UI.WebControls.DataBoundControl
Protected ReadOnly Property Control As DataBoundControl

プロパティ値

DataBoundControl の割り当て先である DataBoundControlAdapter

次のコード例は、 クラスから派生したアダプターの プロパティをオーバーライド Control する方法を DataBoundControlAdapter 示しています。 コントロールへの厳密に型指定された参照を MyDataBound 返します。

// Returns a strongly-typed reference to the MyDataBound control.
public new MyDataBound Control
{
    get
    {
        return (MyDataBound)base.Control;
    }
}
' Returns a strongly-typed reference to the MyDataBound control.
Public Shadows ReadOnly Property Control() As MyDataBound
    Get
        Return CType(MyBase.Control, MyDataBound)
    End Get
End Property

注釈

オブジェクトがDataBoundControlAdapterコントロールにDataBoundControlアタッチされている場合、.NET Frameworkはコントロール メンバーではなく特定のアダプター メンバーを呼び出します。

注意 (継承者)

クラスから DataBoundControlAdapter 継承する場合は、「例」セクションに示すように、少なくとも、コントロールの厳密に型指定されたインスタンスを返すプロパティを実装 Control する必要があります。

適用対象

こちらもご覧ください