DeviceElementCollection.Item[] 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置集合中的设备元素。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。
重载
Item[Int32] |
获取或设置指定索引位置处的设备元素。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
Item[String] |
返回具有指定键的设备元素。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
Item[Int32]
获取或设置指定索引位置处的设备元素。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。
public:
property System::Web::UI::MobileControls::DeviceElement ^ default[int] { System::Web::UI::MobileControls::DeviceElement ^ get(int index); void set(int index, System::Web::UI::MobileControls::DeviceElement ^ value); };
public System.Web.UI.MobileControls.DeviceElement this[int index] { get; set; }
member this.Item(int) : System.Web.UI.MobileControls.DeviceElement with get, set
Default Public Property Item(index As Integer) As DeviceElement
参数
- index
- Int32
要返回的 DeviceElement 的指定索引位置。
属性值
指定索引处的 DeviceElement。
另请参阅
适用于
Item[String]
返回具有指定键的设备元素。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。
public:
property System::Web::UI::MobileControls::DeviceElement ^ default[System::String ^] { System::Web::UI::MobileControls::DeviceElement ^ get(System::String ^ name); };
public System.Web.UI.MobileControls.DeviceElement this[string name] { get; }
member this.Item(string) : System.Web.UI.MobileControls.DeviceElement
Default Public ReadOnly Property Item(name As String) As DeviceElement
参数
- name
- String
要返回的 DeviceElement 的键。
属性值
具有指定键的 DeviceElement。 如果集合中不存在具有指定 name
的对象,则 Item[String] 返回 null
。