Windows.Item[Object] Property

Definition

Gets a reference to the specified WindowObject object from WindowsCollection collection.

public:
 property Microsoft::Office::Interop::InfoPath::WindowObject ^ default[System::Object ^] { Microsoft::Office::Interop::InfoPath::WindowObject ^ get(System::Object ^ varIndex); };
public Microsoft.Office.Interop.InfoPath.WindowObject this[object varIndex] { get; }
member this.Item(obj) : Microsoft.Office.Interop.InfoPath.WindowObject
Default Public ReadOnly Property Item(varIndex As Object) As WindowObject

Parameters

varIndex
Object

An 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

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];

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.

Applies to