Country Property
Applies To
System object.
Description
Returns the country designation of the system. Read-only Long.
Can be one of the following WdCountry constants:
See Also
LanguageDesignation property.
Example
If the Country property returns wdUS, this example converts the top margin value from points to inches.
If System.Country = wdUS Then
topMgn = ActiveDocument.PageSetup.TopMargin
MsgBox "Top margin is " & PointsToInches(topMgn)
End If