Windows2.Count Property
Gets a value indicating the number of objects in the Windows2 collection.
Namespace: EnvDTE80
Assembly: EnvDTE80 (in EnvDTE80.dll)
Syntax
'Declaration
ReadOnly Property Count As Integer
int Count { get; }
property int Count {
int get ();
}
abstract Count : int with get
function get Count () : int
Property Value
Type: Int32
An integer containing the number of objects in the Windows2 collection.
Examples
This example creates a Windows2 object and displays the number of windows in the collection.
For more information about how to run this example as an add-in, see How to: Compile and Run the Automation Object Model Code Examples.
Imports EnvDTE
Imports EnvDTE80
Public Sub OnConnection(ByVal application As Object, _
ByVal connectMode As ext_ConnectMode, ByVal addInInst As Object, _
ByRef custom As Array) Implements IDTExtensibility2.OnConnection
_applicationObject = CType(application, DTE2)
_addInInstance = CType(addInInst, AddIn)
CountWindowsExample(_applicationObject)
End Sub
Sub CountWindowsExample(ByVal dte As DTE2)
Dim wins As Windows2
wins = CType(_applicationObject.Windows, EnvDTE80.Windows2)
MsgBox("The number of windows in the Windows2 collection is: " _
& wins.Count)
End Sub
using EnvDTE;
using EnvDTE80;
using System.Windows.Forms;
public void OnConnection(object application,
ext_ConnectMode connectMode, object addInInst, ref Array custom)
{
_applicationObject = (DTE2)application;
_addInInstance = (AddIn)addInInst;
CountWindowsExample(_applicationObject);
}
public void CountWindowsExample(DTE2 dte)
{
Windows2 wins;
wins = (EnvDTE80.Windows2)_applicationObject.Windows;
MessageBox.Show("The number of windows in the Windows2
collection is: " + wins.Count);
}
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
Other Resources
How to: Compile and Run the Automation Object Model Code Examples