_DTE::Documents Property

 

Gets the collection of open documents in the development environment.

Namespace:   EnvDTE
Assembly:  EnvDTE (in EnvDTE.dll)

property Documents^ Documents {
	Documents^ get();
}

Property Value

Type: EnvDTE::Documents^

A Documents collection.

Sub DocumentsExample()
  MsgBox(DTE.Documents.Count)
End Sub
Return to top
Show: