Outlook) (DistListItem.DLName 屬性
會傳回或設定 String,此字串代表通訊群組清單的顯示名稱。 讀取/寫入。
語法
expression。 DLName
表達 代表 DistListItem 物件的 變數。
範例
這個 Microsoft Visual Basic for Applications (VBA) 範例會建立新通訊群組清單,然後提示使用者輸入名稱。
Sub CreateDL()
Dim myDistList As Outlook.DistListItem
Set myDistList = Application.CreateItem(olDistributionListItem)
myDistList.DLName = InputBox("Type the name of the new distribution list.")
myDistList.Save
myDistList.Display
End Sub
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。