Windows.Item Property
Gets a reference to the specified WindowObject object from WindowsCollection collection.
Namespace: Microsoft.Office.Interop.InfoPath.SemiTrust
Assembly: Microsoft.Office.Interop.InfoPath.SemiTrust (in Microsoft.Office.Interop.InfoPath.SemiTrust.dll)
Syntax
'Declaration
ReadOnly Default Property Item ( _
varIndex As Object _
) As WindowObject
Get
'Usage
Dim instance As Windows
Dim varIndex As Object
Dim value As WindowObject
value = instance(varIndex)
WindowObject this[
Object varIndex
] { get; }
Parameters
varIndex
Type: System.ObjectAn expression that specifies the position of a member of the WindowsCollection collection. The argument must be a number from 0 to the value of the collection's Count property minus 1.
Property Value
Type: Microsoft.Office.Interop.InfoPath.SemiTrust.WindowObject
Remarks
If the value provided for the varIndex argument does not match any existing member of the collection, an error occurs.
After you have set a reference to the WindowObject object that the Item property returns, you can access any of its properties and methods.
Important
This member can be accessed without restrictions.
Examples
Because the Item property is the default property of the WindowsCollection collection, it can be used as follows:
Window2 firstWindow;
firstWindow = thisApplication.Windows[0];