ViewField.ViewXMLSchemaName 属性 (Outlook)

返回一个 字符串 值,表示 ViewField 对象所引用的属性的 XML 架构名称。 此为只读属性。

语法

expressionViewXMLSchemaName

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

备注

此属性的值包含在包含 ViewField 对象的视图的 XML 定义中包括它的属性的名称。 此值可能与用来当 ViewField 对象定义引用的属性的名称不匹配。

示例

(VBA) 示例下面的 Visual Basic for Applications 循环 ViewFields 集合的当前的 对象在集合中显示的标签和 XML 架构的每个 ViewField 对象的名称。

Private Sub DisplayTableViewFields() 
 
 Dim objTableView As TableView 
 
 Dim objViewField As ViewField 
 
 Dim strOutput As String 
 
 
 
 If Application.ActiveExplorer.CurrentView.ViewType = _ 
 
 olTableView Then 
 
 
 
 ' Obtain a TableView object reference for the 
 
 ' current table view. 
 
 Set objTableView = _ 
 
 Application.ActiveExplorer.CurrentView 
 
 
 
 ' Iterate through the ViewFields collection for 
 
 ' the table view, obtaining the label and the 
 
 ' XML schema name for each field included in 
 
 ' the view. 
 
 For Each objViewField In objTableView.ViewFields 
 
 With objViewField 
 
 strOutput = strOutput & .ColumnFormat.Label & _ 
 
 " (" & .ViewXMLSchemaName & ")" & vbCrLf 
 
 End With 
 
 Next 
 
 
 
 ' Display a dialog box containing the concatenated 
 
 ' view field information. 
 
 MsgBox strOutput 
 
 End If 
 
End Sub

另请参阅

ViewField 对象

支持和反馈

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