Variable.Value Property (Word)
Returns or sets the value of a document variable. Read/write String.
Syntax
expression .Value
expression Required. A variable that represents a Variable object.
Example
This example adds a document variable to the active document and then displays the value of the new variable.
ActiveDocument.Variables.Add Name:="Temp2", Value:="10"
MsgBox ActiveDocument.Variables("Temp2").Value
Warning
The value of a Variable object cannot be set to a zero-length string. Setting a Variable object to a zero-length string results in a run time error.