DistListItem.DLName property (Outlook)
Returns or sets a String representing the display name of a distribution list. Read/write.
Syntax
expression. DLName
expression A variable that represents a DistListItem object.
Example
This Microsoft Visual Basic for Applications (VBA) example creates a new distribution list and then prompts the user for a name.
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
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.