Control.Adapter Property

Definition

Gets the browser-specific adapter for the control.

protected:
 property System::Web::UI::Adapters::ControlAdapter ^ Adapter { System::Web::UI::Adapters::ControlAdapter ^ get(); };
protected System.Web.UI.Adapters.ControlAdapter Adapter { get; }
member this.Adapter : System.Web.UI.Adapters.ControlAdapter
Protected ReadOnly Property Adapter As ControlAdapter

Property Value

A ControlAdapter for this control. If the target browser does not require an adapter, returns null.

Remarks

ASP.NET Web pages are usable across a wide range of devices and browsers that can request information from the Web. The Adapter property returns the ControlAdapter object that renders the control on the requesting device or browser's screen.

For more information about adapters, see Architectural Overview of Adaptive Control Behavior.

Applies to

See also