Variables Property

Applies To

Document object.

Description

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

See Also

Add method (Variables collection), Name property, Value property.

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