Outlook) (BusinessCardView.SaveOption 屬性
會傳回 OlViewSaveOption 常數,指定指定之檢視可用的資料夾,以及附加至檢視的讀取權限。 唯讀。
語法
expression。 SaveOption
表達 會傳回 BusinessCardView 物件的運算式。
註解
SaveOption 屬性的值會在使用 Views 集合的 Add 方法建立 BusinessCardView 物件時設定。
範例
下列的 Visual Basic for Applications (VBA) 範例會鎖定所有使用者可用之所有檢視的使用者介面。 副程式 LockView
會接受 View 物件和 布林 值,指出 View 使用者接 口是否會鎖定。 在此範例中,一律會呼叫程式,並將 布林 值設定為 True。
Sub LockPublicViews()
Dim objName As NameSpace
Dim objViews As Views
Dim objView As View
' Get the Views collection for the Contacts default folder.
Set objName = Application.GetNamespace("MAPI")
Set objViews = objName.GetDefaultFolder(olFolderContacts).Views
' Enumerate the Views collection and lock the user
' interface for any view that can be accessed by
' all users who have access to the Notes default folder.
For Each objView In objViews
If objView.SaveOption = olViewSaveOptionThisFolderEveryone Then
Call LockView(objView, True)
End If
Next objView
End Sub
Sub LockView(ByRef objView As View, ByVal blnAns As Boolean)
' Examine the view object.
With objView
If blnAns = True Then
' Lock the user interface and
' save the view
.LockUserChanges = True
.Save
Else
' Unlock the user interface of the view.
.LockUserChanges = False
End If
End With
End Sub
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。