共用方式為


ICivicAddressReport::GetCountryRegion 方法 (locationapi.h)

[Win32 位置 API 可用於需求一節中指定的作業系統。 它在後續版本中可能會變更或無法使用。 請改用 Windows.Devices.Geolocation API。 ]

擷取兩個字母的國家或地區代碼。

語法

HRESULT GetCountryRegion(
  [out] BSTR *pbstrCountryRegion
);

參數

[out] pbstrCountryRegion

接收國家或地區代碼的 BSTR 位址。

傳回值

如果此方法成功,則會傳回 S_OK。 否則,它會傳回 HRESULT 錯誤碼。

備註

兩個字母的國家或地區代碼格式為 ISO 3166。

範例

下列範例示範如何呼叫 GetCountryRegion

    hr = pCivicAddressReport->GetCountryRegion(&bstrCountryRegion);
    if (SUCCEEDED(hr)) 
    {
        // Country/Region is an ISO-3166-1 two-letter code.
       wprintf(L"\tCountry/Region:\t%s\n\n", bstrCountryRegion);    
    }       

規格需求

需求
最低支援的用戶端 Windows 7 [僅限傳統型應用程式],Windows 7
最低支援的伺服器 都不支援
目標平台 Windows
標頭 locationapi.h
Dll LocationAPI.dll

另請參閱

ICivicAddressReport