TextWindow Object

Home Page (Objects)OverviewFAQReference

The TextWindow object represents a view of a TextDocument object — that is, a view of a file that is open). A TextDocument object can have several TextWindow objects.

The TextWindow object has the following properties and methods:

Properties
Active Parent
Application Previous
Caption Selection
Height Top
Index Type
Left Width
Next WindowState

Methods
Close

You can access the TextWindow object by using the Windows property of the Application object or by using the window-oriented properties and methods of the Document object.

Using a Dual Interface to Access This Object

This section about dual interfaces is useful for writing add-ins or automating Developer Studio across processes. This section is not applicable to writing VBScript macros.

The TextWindow object implements the ITextWindow dual interface. Through this interface, add-ins can directly access the members (properties, methods, and events) of this object and can employ early binding to make calls into these members faster at run time.

Add-ins written in Visual C++ can access members of the TextWindow object by using the header files in Vc98\Include\objmodel. However, if you use the Developer Studio Add-in Wizard to create an add-in, the wizard automatically includes these header files in your source code.

The following table shows the header files you need for the TextWindow object:

Header file Description
textauto.h Declares the dual interfaces.
textguid.h Declares the GUIDs used to identify the interfaces.
textdefs.h Declares additional information needed to use the interfaces, such as error IDs and enumerated constants.

Add-ins written in Visual Basic can access members of the TextWindow object by using the Visual Studio '97 Text Editor type library, located in Msdev98\bin\devedit.pkg.

Note   Visual Studio '97 Text Editor is the name that appears in the Visual Basic References dialog box.

See Also   Window object.