Compartilhar via


IFolder:IUnknown (Windows CE 5.0)

Send Feedback

This interface exposes folder properties and methods to send items in folders over an infrared link. The system provides folders for Contacts, Tasks, Appointment, and Infrared. You can use all folders except the infrared folder to access or create individual Pocket Outlook items. You can use the infrared folder only to send items over the IR port.

Methods in Vtable Order

Method Description
ReceiveFromInfrared Initiates reception of an item for the current folder type over the IR port.
AddItemToInfraredFolder Adds, for an infrared folder only, an item to the list of items to be sent over an infrared link.
SendToInfrared Sends items to the IR port.

Remarks

Get any of the Folder objects with the GetDefaultFolder method on the main POOM Application object.

Example

The following code example shows how to retrieve the Calendar folder.

void GetCalendarFolder (IPOutlookApplication *polApp)
{
  IFolder *pFolder;
  polApp->GetDefaultFolder (olFolderCalendar, &pFolder);

  // Release objects
  pFolder->Release ();
}

Requirements

OS Versions: Windows CE 2.0 and later.
Header: Pimstore.h.
Link Library: Pimstore.lib.

See Also

IFolder Properties

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.