Class DistListItem (Outlook VBA)

The class DistListItem represents a distribution list in a Contacts folder.


Dim dli as DistListItem
Set dli = Session.CreateSharingItem.Move.Items(Index:=1)

For Each

Here is an example of processing the DistListItem items in a collection.


Dim dliItem As DistListItem
For Each dliItem In Session.CreateSharingItem.Move.Items
	
Next dliItem

Methods

AddMember - Adds a new member to the specified distribution list. The distribution list contains Recipient objects that represent valid email addresses.

AddMembers - Adds new members to a distribution list.

ClearTaskFlag - Clears the DistListItem object as a task.

Copy - Creates another instance of an object.

Delete - Removes the item from the folder that contains the item.

Display - Displays a new Inspector object for the item.

GetConversation - Obtains a Conversation object that represents the conversation to which this item belongs.

GetMember - Returns a Recipient object representing a member in a distribution list.

MarkAsTask - Marks a DistListItem object as a task and assigns a task interval for the object.

Move - Moves a Microsoft Outlook item to a new folder.

PrintOut - Prints the Outlook item using all default settings.The PrintOut method is the only Outlook method that can be used for printing.

RemoveMember - Removes an individual member from a given distribution list.

RemoveMembers - Removes members from a distribution list.

Save - Saves the Microsoft Outlook item to the current folder or, if this is a new item, to the Outlook default folder for the item type.

SaveAs - Saves the Microsoft Outlook item to the specified path and in the format of the specified file type. If the file type is not specified, the MSG format (.msg) is used.

ShowCategoriesDialog - Displays the Show Categories dialog box, which allows you to select categories that correspond to the subject of the item.

Properties

Actions returns an Actions collection that represents all the available actions for the item.

Attachments returns an Attachments object that represents all the attachments for the specified item.

AutoResolvedWinner returns a Boolean that determines if the item is a winner of an automatic conflict resolution.

BillingInformation returns or sets a String representing the billing information associated with the Outlook item.

Body returns or sets a String representing the clear-text body of the Outlook item.

Categories returns or sets a String representing the categories assigned to the Outlook item.

Class returns an OlObjectClass constant indicating the object's class.

Companies returns or sets a String representing the names of the companies associated with the Outlook item.

Conflicts return the Conflicts object that represents the items that are in conflict for any Outlook item object.

ConversationID returns a String that uniquely identifies a Conversation object that the DistListItem object belongs to.

ConversationIndex returns a String that indicates the relative position of the item within the conversation thread.

ConversationTopic returns a String representing the topic of the conversation thread of the Outlook item.

CreationTime returns a Date indicating the creation time for the Outlook item.

DLName returns or sets a String representing the display name of a distribution list.

DownloadState returns a constant that belongs to the OlDownloadState enumeration indicating the download state of the item.

EntryID returns a String representing the unique Entry ID of the object.

FormDescription returns the FormDescription object that represents the form description for the specified Outlook item.

GetInspector returns an Inspector object that represents an inspector initialized to contain the specified item.

Importance returns or sets an OlImportance constant indicating the relative importance level for the Outlook item.

IsConflict returns a Boolean that determines if the item is in conflict.

IsMarkedAsTask returns a Boolean value that indicates whether the DistListItem is marked as a task.

ItemProperties returns an ItemProperties collection that represents all standard and user-defined properties associated with the Outlook item.

LastModificationTime returns a Date specifying the date and time that the Outlook item was last modified.

MarkForDownload returns or sets an OlRemoteStatus constant that determines the status of an item once it is received by a remote user.

MemberCount returns a Long indicating the number of members in a distribution list.

MessageClass returns or sets a String representing the message class for the Outlook item.

Mileage returns or sets a String representing the mileage for an item.

NoAging returns or sets a Boolean value that is True to not age the Outlook item.

OutlookInternalVersion returns a Long representing the build number of the Outlook application for an Outlook item.

OutlookVersion returns a String indicating the major and minor version number of the Outlook application for an Outlook item.

PropertyAccessor returns a PropertyAccessor object that supports creating, getting, setting, and deleting properties of the parent DistListItem object.

ReminderOverrideDefault returns or sets a Boolean value that is True if the reminder overrides the default reminder behavior for the item.

ReminderPlaySound returns or sets a Boolean value that is True if the reminder should play a sound when it occurs for this item.

ReminderSet returns or sets a Boolean value that is True if a reminder has been set for this item.

ReminderSoundFile returns or sets a String indicating the path and file name of the sound file to play when the reminder occurs for the Outlook item.

ReminderTime returns or sets a Date indicating the date and time at which the reminder should occur for the specified item.

RTFBody returns or sets a Byte array that represents the body of the Microsoft Outlook item in Rich Text Format. Read/write.

Saved returns a Boolean value that is True if the Outlook item has not been modified since the last save.

Sensitivity returns or sets a constant in the OlSensitivity enumeration indicating the sensitivity for the Outlook item.

Session returns the NameSpace object for the current session.

Size returns a Long indicating the size (in bytes) of the Outlook item.

Subject returns or sets a String indicating the subject for the Outlook item.

TaskCompletedDate returns or sets a Date value that represents the completion date of the task for this DistListItem.

TaskDueDate returns or sets a Date value that represents the due date of the task for this DistListItem.

TaskStartDate returns or sets a Date value that represents the start date of the task for this DistListItem object.

TaskSubject returns or sets a String value that represents the subject of the task for the DistListItem object.

ToDoTaskOrdinal returns or sets a Date value that represents the ordinal value of the task for the DistListItem.

UnRead returns or sets a Boolean value that is True if the Outlook item has not been opened (read).

UserProperties returns the UserProperties collection that represents all the user properties for the Outlook item.

Actions - Contains a collection of Action objects that represent all the specialized actions that can be executed on an Outlook item.

Attachments - Contains a set of Attachment objects that represent the attachments in an Outlook item.

Conflicts - Contains a collection of Conflict objects that represent all Microsoft Outlook items that are in conflict with a particular Outlook item.

Conversation - Represents a conversation that includes one or more items stored in one or more folders and stores.

Folder - Represents an Outlook folder.

FormDescription - Represents the general properties of an Outlook form.

Inspector - Represents the window in which an Outlook item is displayed.

ItemProperties - A collection of all properties associated with the item.

NameSpace - Represents an abstract root object for any data source.

PropertyAccessor - Provides the ability to create, get, set, and delete properties on objects.

Recipient - Represents a user or resource in Outlook, generally a mail or mobile message addressee.

UserProperties - Contains UserProperty objects that represent the custom properties of an Outlook item.