Skip to content

Latest commit

 

History

History
58 lines (33 loc) · 1.38 KB

Word.Document.Variables.md

File metadata and controls

58 lines (33 loc) · 1.38 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Document.Variables property (Word)
vbawd10.chm158007322
vbawd10.chm158007322
Word.Document.Variables
93af7b84-f172-6ebd-2147-e7ebc92449c5
06/08/2017
medium

Document.Variables property (Word)

Returns a Variables collection that represents the variables stored in the specified document. Read-only.

Syntax

expression. Variables

expression A variable that represents a Document object.

Remarks

For information about returning a single member of a collection, see Returning an object from a collection.

Example

This example adds a document variable named "Value1" to the active document. The example then retrieves the value from the Value1 variable, adds 3 to the value, and displays the results.

ActiveDocument.Variables.Add Name:="Value1", Value:="1" 
MsgBox ActiveDocument.Variables("Value1") + 3

This example displays the name and value of each document variable in the active document.

For Each myVar In ActiveDocument.Variables 
 MsgBox "Name =" & myVar.Name & vbCr & "Value = " & myVar.Value 
Next myVar

See also

Document Object

[!includeSupport and feedback]