共用方式為


Outlook) (OrderField.ViewXMLSchemaName 屬性

會傳回代表 OrderField 物件所參照屬性之 XML 結構描述名稱的 String 值。 唯讀。

語法

expressionViewXMLSchemaName

表達 代表 OrderField 物件的變數。

註解

此屬性值含有屬性的名稱,這與含有 ViewField 物件之檢視的 XML 定義內的名稱相同。 此值可能與定義 OrderField 物件時用來參考屬性的名稱不相符。

範例

下列 Visual Basic for Applications (VBA) 範例會逐一查看目前TableView物件的SortFields集合,並顯示集合中每個OrderField物件的標籤和 XML 架構名稱。

Private Sub DisplayTableViewSortFields() 
 
 Dim objTableView As TableView 
 
 Dim objOrderField As OrderField 
 
 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 OrderFields collection for 
 
 ' the table view, obtaining the label and the 
 
 ' XML schema name for each field used to sort 
 
 ' the items in the view. 
 
 For Each objOrderField In objTableView.SortFields 
 
 With objOrderField 
 
 strOutput = strOutput & .ColumnFormat.Label & _ 
 
 " (" & .ViewXMLSchemaName & ")" & vbCrLf 
 
 End With 
 
 Next 
 
 
 
 ' Display a dialog box containing the concatenated 
 
 ' sort field information. 
 
 MsgBox strOutput 
 
 End If 
 
End Sub

另請參閱

OrderField 物件

支援和意見反應

有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應