BusinessCardView.Language 属性 (Outlook)

返回或设置一个 字符串 值,表示定义菜单中使用的语言的对象的语言设置。 读/写。

语法

表达式语言

表达 一个代表 BusinessCardView 对象的变量。

备注

Language 属性使用 String 类型的值来表示 ISO 语言标记。 例如,字符串“EN-US”表示“美国 - 英语”的 ISO 代码。

如果指定了有效的语言代码,对象将仅在指定语言类型的 "视图" 菜单中可用。 如果未指定值,则该对象项目对所有语言类型都可用。 此属性的默认值为一个空字符串。

示例

(VBA) 示例下面的 Visual Basic for Applications 设置为美国英语的所有 视图 对象的类型 olBusinessCArdView 的语言类型。

Sub SetLanguage() 
 
 'Sets the language of all table views to U.S. English. 
 
 Dim objViews As Outlook.Views 
 
 Dim objView As Outlook.View 
 
 
 
 Set objViews = _ 
 
 Application.GetNamespace("MAPI").GetDefaultFolder(olFolderContacts).Views 
 
 'Iterate through each view in the collection. 
 
 For Each objView In objViews 
 
 Debug.Print objView.Name 
 
 'If view is of type olBusinessCardVIew then set language. 
 
 If objView.ViewType = olBusinessCardView And objView.Standard = False Then 
 
 objView.Language = "EN-US" 
 
 End If 
 
 Next objView 
 
End Sub

另请参阅

BusinessCardView 对象

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。