WordBasic Property
Applies To
Application object, Global object.
Description
Returns an Automation object (Word.Basic) that includes methods for all the WordBasic statements and functions available in Word version 6.0 and Word for Windows 95. Read-only.
Remarks
In Word 97, when you open a Word version 6.0 or Word for Windows 95 template that contains WordBasic macros, the macros are automatically converted to Visual Basic modules. Each WordBasic statement and function in the macro is converted to the corresponding Word.Basic method.
For information about WordBasic statements and functions, see the Microsoft Word Developer's Kit or WordBasic Help in Word version 6.0 or Word for Windows 95.
Example
This example uses the Word.Basic object to create a new document and insert the available font names. Each font name is formatted in its corresponding font.
With WordBasic
.FileNewDefault
For aCount = 1 To .CountFonts()
.Font .[Font$](aCount)
.Insert .[Font$](aCount)
.InsertPara
Next
End With