(Contents)(Previous)(Next)

GetItems()

Description: Gets the list of items contained in this folder.
Syntax: object.GetItems
Parameters:
object Required, the Message object
Remarks: This method returns a List object which represents the list of items belonging to this folder. For example, if this object is a Meeting folder object then this method will return a list of meetings.
Returns: An item object.
Example:
Dim session As Object

Set session = CreateObject("OfficeTalk.Session")

Set user = session.Logon(login name, password)

Set folder = session.GetMeetingFolders.GetFirst

Set meetings = folder.GetItems


Next