Document Interface
Represents a document in the environment open for editing.
Assembly: EnvDTE (in EnvDTE.dll)
| Name | Description | |
|---|---|---|
![]() | ActiveWindow | Gets the currently active window, or the topmost window if no others are active. Returns Nothing if no windows are open. |
![]() | Collection | Gets the collection containing the Document object. |
![]() | DTE | Gets the top-level extensibility object. |
![]() | Extender[String^] | Returns the requested Extender if it is available for this object. |
![]() | ExtenderCATID | Gets the Extender category ID (CATID) for the object. |
![]() | ExtenderNames | Gets a list of available Extenders for the object. |
![]() | FullName | Gets the full path and name of the object's file. |
![]() | IndentSize | This API supports the product infrastructure and is not intended to be used directly from your code. Microsoft Internal Use Only. |
![]() | Kind | Gets a GUID string indicating the kind or type of the object. |
![]() | Language | This API supports the product infrastructure and is not intended to be used directly from your code. Microsoft Internal Use Only. |
![]() | Name | Gets the name of the Document. |
![]() | Path | Gets the path, without file name, for the directory containing the document. |
![]() | ProjectItem | Gets the ProjectItem object associated with the Document object. |
![]() | ReadOnly | This API supports the product infrastructure and is not intended to be used directly from your code. Microsoft Internal Use Only. |
![]() | Saved | Returns true if the object has not been modified since last being saved or opened. |
![]() | Selection | Gets an object representing the current selection on the Document. |
![]() | TabSize | This API supports the product infrastructure and is not intended to be used directly from your code. Microsoft Internal Use Only. |
![]() | Type | This API supports the product infrastructure and is not intended to be used directly from your code. Microsoft Internal Use Only. |
![]() | Windows | Gets a Windows collection containing the windows that display in the object. |
| Name | Description | |
|---|---|---|
![]() | Activate() | Moves the focus to the current item. |
![]() | ClearBookmarks() | This API supports the product infrastructure and is not intended to be used directly from your code. Microsoft Internal Use Only. |
![]() | Close(vsSaveChanges) | Closes the open document and optionally saves it, or closes and destroys the window. |
![]() | MarkText(String^, Int32) | This API supports the product infrastructure and is not intended to be used directly from your code. Microsoft Internal Use Only. |
![]() | NewWindow() | Creates a new window in which to view the document. |
![]() | Object(String^) | Returns an interface or object that can be accessed at run time by name. |
![]() | PrintOut() | This API supports the product infrastructure and is not intended to be used directly from your code. Microsoft Internal Use Only. |
![]() | Redo() | Re-executes the last action that was undone by the Undo method or the user. |
![]() | ReplaceText(String^, String^, Int32) | This API supports the product infrastructure and is not intended to be used directly from your code. Microsoft Internal Use Only. |
![]() | Save(String^) | Saves the document. |
![]() | Undo() | Reverses the action last performed by the user in the document. |
A Document object represents each open document or designer in the environment — that is, windows that are not tool windows and have an area to edit text. The Document object has members (properties, methods, and events) that you can use to manipulate the document. If it is a text file edited by the Visual Studio editor, then it also has a TextDocument object associated with it.
All open documents are referenced in the Documents collection. You can find a particular document by iterating through this collection.
The default property for a Document object is the Name property.
Reference this object by using DTE.Documents.Item(...).
Sub DocumentExample() Dim doc As Document Dim desc As String Set doc = DTE.ActiveDocument desc = "You are editing a " If (doc.ReadOnly) Then desc = desc & "read-only" Else desc = desc & "writable" End If desc = desc & " document called " & doc.Name & " located at " & doc.Path MsgBox desc End Sub

