Skip to content

Latest commit

 

History

History
55 lines (34 loc) · 1.83 KB

Word.Global.WordBasic.md

File metadata and controls

55 lines (34 loc) · 1.83 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Global.WordBasic property (Word)
vbawd10.chm163119110
vbawd10.chm163119110
Word.Global.WordBasic
be6209eb-d06c-3399-23b2-31b62642fe83
06/08/2017
medium

Global.WordBasic property (Word)

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.

Syntax

expression. WordBasic

expression A variable that represents a 'Global' object.

Remarks

In Word 2000 and later, 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 WordBasic Help in Word version 6.0 or Word for Windows 95. For information about converting WordBasic to Visual Basic, see Converting WordBasic Macros to Visual Basic. For general information, see Conceptual Differences Between WordBasic and Visual Basic.

Example

This example uses the Word.Basic object to create a new document in Word version 6.0 or Word for Windows 95 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

See also

Global Object

[!includeSupport and feedback]