WebBrowserArray.Item[Int16] 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
通过索引获取 WebBrowserArray 的特定元素。 只读。
public:
property System::Windows::Forms::WebBrowser ^ default[short] { System::Windows::Forms::WebBrowser ^ get(short Index); };
public System.Windows.Forms.WebBrowser this[short Index] { get; }
member this.Item(int16) : System.Windows.Forms.WebBrowser
Default Public ReadOnly Property Item(Index As Short) As WebBrowser
参数
- Index
- Int16
一个指定控件数组元素位置的 Short
。
属性值
位于控件数组中指定 Index
处的 WebBrowser。
注解
属性 Item
是控件数组的默认属性。 因此,以下代码行是等效的。
MsgBox(CStr(WebBrowserArray.Item(1).Text))
MsgBox(CStr(WebBrowserArray(1).Text))
注意
Microsoft.VisualBasic.Compatibility.VB6 命名空间中的函数和对象用于工具从 Visual Basic 6.0 升级到 Visual Basic。 多数情况下,这些函数和对象可再现 .NET Framework 中其他命名空间的功能。 只有当 Visual Basic 6.0 代码模型与 .NET Framework 实现有显著区别时,才必须使用这些函数和对象。