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