Application.International Property

Word Developer Reference

Returns information about the current country/region and international settings. Read-only Variant.

Syntax

expression.International(Index)

expression   Required. A variable that represents an Application object.

Parameters

Name Required/Optional Data Type Description
Index Required WdInternationalIndex The current country/region and/or international setting.

Example

This example displays the currency format in the status bar.

Visual Basic for Applications
  StatusBar = "Currency Format: " _
    & Application.International(wdCurrencyCode)

See Also