Compartir a través de


Windows.Count (Propiedad)

Obtiene un recuento del número de objetos WindowObject contenidos en la colección WindowsCollection.

Esta propiedad no es compatible con CLS.  

Espacio de nombres: Microsoft.Office.Interop.InfoPath.SemiTrust
Ensamblado: Microsoft.Office.Interop.InfoPath.SemiTrust (en microsoft.office.interop.infopath.semitrust.dll)

Sintaxis

<DispIdAttribute(1)> _
ReadOnly Property Count As Integer

Dim instance As Windows
Dim value As Integer

value = instance.Count
[DispIdAttribute(1)] 
int Count { get; }

Comentarios

Importante:

Se puede obtener acceso a este miembro sin restricciones.

Ejemplo

En el ejemplo siguiente, se utiliza la propiedad Count en un bucle For para realizar una iteración por la colección de objetos Window y mostrar un cuadro de mensaje que indique el valor del tipo de ventana:

for (int i=0; i < thisApplication.Windows.Count; i++)
{
 thisXDocument.UI.Alert("Window type: " + thisApplication.Windows[i].WindowType);
}

Vea también

Referencia

Windows (Interfaz)
Windows (Miembros)
Microsoft.Office.Interop.InfoPath.SemiTrust (Espacio de nombres)