DistListItem.DLName 属性 (Outlook)

返回或设置一个 字符串 ,表示通讯组列表的显示名称。 读/写。

语法

expressionDLName

表达 一个代表 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

另请参阅

DistListItem 对象

支持和反馈

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