D:/develop/v65/clients/outlook/install/output/export/funambol/clients/outlook/mainclientDll/src/include/outlook/itemProps.h

00001 /*
00002  * Funambol is a mobile platform developed by Funambol, Inc. 
00003  * Copyright (C) 2003 - 2007 Funambol, Inc.
00004  * 
00005  * This program is free software; you can redistribute it and/or modify it under
00006  * the terms of the GNU Affero General Public License version 3 as published by
00007  * the Free Software Foundation with the addition of the following permission 
00008  * added to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED
00009  * WORK IN WHICH THE COPYRIGHT IS OWNED BY FUNAMBOL, FUNAMBOL DISCLAIMS THE 
00010  * WARRANTY OF NON INFRINGEMENT  OF THIRD PARTY RIGHTS.
00011  * 
00012  * This program is distributed in the hope that it will be useful, but WITHOUT
00013  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
00014  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
00015  * details.
00016  * 
00017  * You should have received a copy of the GNU Affero General Public License 
00018  * along with this program; if not, see http://www.gnu.org/licenses or write to
00019  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
00020  * MA 02110-1301 USA.
00021  * 
00022  * You can contact Funambol, Inc. headquarters at 643 Bair Island Road, Suite 
00023  * 305, Redwood City, CA 94063, USA, or at email address info@funambol.com.
00024  * 
00025  * The interactive user interfaces in modified source and object code versions
00026  * of this program must display Appropriate Legal Notices, as required under
00027  * Section 5 of the GNU Affero General Public License version 3.
00028  * 
00029  * In accordance with Section 7(b) of the GNU Affero General Public License
00030  * version 3, these Appropriate Legal Notices must retain the display of the
00031  * "Powered by Funambol" logo. If the display of the logo is not reasonably 
00032  * feasible for technical reasons, the Appropriate Legal Notices must display
00033  * the words "Powered by Funambol".
00034  */
00035 
00036 #ifndef INCL_ITEM_PROPS
00037 #define INCL_ITEM_PROPS
00038 
00043 #include "base/fscapi.h"
00044 #include "outlook/defs.h"
00045 #include "winmaincpp.h"
00046 
00047 #include "spdm/constants.h"
00048 
00049 
00051 #define ITEM_TYPES_COUNT                    8
00052 #define DIFF_PROPERTY_NAMES_COUNT           2
00053 
00054 
00055 
00058 typedef struct OutlookItemTypes {
00059     std::wstring      name;
00060     OlItemType        olType;
00061     OlDefaultFolders  olFolderType;
00062 } ItemTypes;
00063 
00064 
00065 static ItemTypes itemTypes[ITEM_TYPES_COUNT] = {
00066 //  name(itemType)      olType                  olFolderType
00067 //  -------------------------------------------------------------
00068     {MAIL,              olMailItem,             olFolderInbox},
00069     {APPOINTMENT,       olAppointmentItem,      olFolderCalendar},
00070     {CONTACT,           olContactItem,          olFolderContacts},
00071     {TASK,              olTaskItem,             olFolderTasks},
00072     {JOURNAL,           olJournalItem,          olFolderJournal},
00073     {NOTE,              olNoteItem,             olFolderNotes},
00074     {POST,              olPostItem,             olFolderInbox},
00075     {DISTRIBUTION_LIST, olDistributionListItem, olFolderContacts}
00076 
00077 };
00078 
00079 
00080 
00081 
00084 typedef struct OutlookPropertyNames {
00085     std::wstring      SIFName;
00086     std::wstring      OutlookName;
00087 } PropertyNames;     // cond DEV
00089 
00090 
00091 
00092 
00093 static PropertyNames diffPropertyNames[DIFF_PROPERTY_NAMES_COUNT] = {
00094 //  SIFName                 OutlookName
00095 //  ------------------------------------------------
00096     {L"HomeWebPage",        L"PersonalHomePage"}
00097     //{L"BusinessWebPage",    L"BusinessHomePage"}      // Duplicated: inside Outlook it's the same of "WebPage" -> removed since 6.5.2
00098     //{L"Photo",              L"Picture"         }      // managed alone in dataTransformer.cpp
00099     //{L"Date",             L"LastModificationTime"}    // notes: no more used
00100 };
00101 
00102 
00103 
00104 
00105 // ***********************************************************************************************
00106 // **************************** Arrays of Item properties for Outlook ****************************
00107 // ***********************************************************************************************
00108 
00109 
00110 //
00111 // --------------------------------------- SAFE PROPERTIES ---------------------------------------
00112 //
00114 static WCHAR* safeCalendarProps[] = {
00115 
00116     {L"Body"                },
00117     {L"OptionalAttendees"   },
00118     {NULL}
00119 
00120 };
00121 
00122 
00124 static WCHAR* safeContactProps[] = {
00125 
00126     {L"Body"                },
00127     {L"Email1Address"       },
00128     {L"Email1AddressType"   },
00129     {L"Email1DisplayName"   },          
00130     {L"Email2Address"       },
00131     {L"Email2AddressType"   },
00132     {L"Email2DisplayName"   },          
00133     {L"Email3Address"       },
00134     {L"Email3AddressType"   },
00135     {L"Email3DisplayName"   },          
00136     {L"IMAddress"           },
00137     {NULL}
00138 
00139 };
00140 
00141 
00143 static WCHAR* safeTaskProps[] = {
00144 
00145     {L"Body"                },
00146     {L"ContactNames"        },
00147     {L"Owner"               },
00148     {NULL}
00149 
00150 };
00151 
00152 
00154 static WCHAR* safeNoteProps[] = {
00155 
00156     {L"Body"                },
00157     {NULL}
00158 
00159 };
00160 
00161 
00162 //
00163 // ------------------------------------- COMPLEX PROPERTIES -------------------------------------
00164 //
00166 static WCHAR* complexCalendarProps[] = {
00167 
00168     {L"AllDayEvent"                 },
00169     {L"Start"                       },
00170     {L"End"                         },
00171     {L"IsRecurring"                 },
00172     {L"NoAging"                     },
00173     {L"ReminderSet"                 },
00174     {L"ReplyTime"                   },
00175     {L"UnRead"                      },
00176     {L"ReminderSoundFile"           },      // Because we need to check the 'ReminderPlaySound'
00177     {L"LastModificationTime"        },      // Used by SyncSource
00178     {L"Categories"                  },      // To convert separator: ";" into ","
00179     {NULL}
00180 
00181 };
00182 
00183 
00185 static WCHAR* complexContactProps[] = {
00186 
00187     {L"Anniversary"                 },
00188     {L"Birthday"                    },
00189     {L"NoAging"                     },
00190     {L"UnRead"                      },
00191     {L"FirstName"                   },      // For first letter capitalization...
00192     {L"LastName"                    },      // For first letter capitalization...
00193     {L"Categories"                  },      // To convert separator: ";" into ","
00194     {L"LastModificationTime"        },      // Used by SyncSource
00195     {L"Photo"                       },      // Contact's picture (b64)
00196     {NULL}
00197 
00198 };
00199 
00200 
00202 static WCHAR* complexMailProps[] = {
00203 
00204     {L"DeferredDeliveryTime"        },
00205     {L"ExpiryTime"                  },
00206     {L"FlagDueBy"                   },
00207     {L"FlagStatus"                  },
00208     {L"Importance"                  },
00209     {L"NoAging"                     },
00210     {L"ReadReceiptRequested"        },
00211     {L"ReminderSet"                 },
00212     {L"ReminderTime"                },
00213     {L"Sensitivity"                 },
00214     {L"UnRead"                      },
00215     {L"LastModificationTime"        },      // Used by SyncSource
00216     {NULL}
00217 
00218 };
00219 
00220 
00221 
00223 static WCHAR* complexTaskProps[] = {
00224 
00225     {L"Complete"                    },
00226     {L"DateCompleted"               },
00227     {L"DueDate"                     },
00228     {L"IsRecurring"                 },
00229     {L"NoAging"                     },
00230     {L"ReminderSet"                 },
00231     {L"ReminderTime"                },
00232     {L"StartDate"                   },
00233     {L"TeamTask"                    },
00234     {L"UnRead"                      },
00235     {L"Categories"                  },      // To convert separator: ";" into ","
00236     {L"LastModificationTime"        },      // Used by SyncSource
00237     {L"ReminderSoundFile"           },      // Because we need to check the 'ReminderPlaySound'
00238     {NULL}
00239 
00240 };
00241 
00242 
00243 
00245 static WCHAR* complexNoteProps[] = {
00246 
00247     {L"Subject"                     },
00248     {L"Categories"                  },      // To convert separator: ";" into ","
00249     {L"Color"                       },      // It's deprecated in Outlook2007 (Categories is used)
00250     {L"LastModificationTime"        },      // Used by SyncSource
00251     {NULL}
00252 
00253 };
00254 
00255 
00256 
00258 static WCHAR* recurrenceProps[] = {
00259 
00260     {L"RecurrenceType"              },
00261     {L"Interval"                    },
00262     {L"MonthOfYear"                 },
00263     {L"DayOfMonth"                  },
00264     {L"DayOfWeekMask"               },
00265     {L"Instance"                    },
00266     {L"PatternStartDate"            },
00267     {L"NoEndDate"                   },
00268     {L"PatternEndDate"              },
00269     {L"Occurrences"                 },
00270     {NULL}
00271 
00272 };
00273 
00274 
00275 
00276 
00277 
00278 
00279 // -------------------------------------------------------------------------------------------------
00280 // ----------------------------------- not used... -------------------------------------------------
00281 // -------------------------------------------------------------------------------------------------
00282 //
00283 // Correspondance of OlDaysOfWeek (Mask) <-> SYSTEMTIME.wDayOfWeek
00284 // ****************************************************************
00285 //typedef struct OutlookDaysOfWeek {
00286 //    std::wstring    name;
00287 //    WORD            dayNumber;
00288 //    OlDaysOfWeek    dayMask;
00289 //} DaysOfWeek;
00290 //
00291 //
00292 //static DaysOfWeek daysOfWeek[7] = {
00295 //    {L"Sunday",         0,          olSunday   },
00296 //    {L"Monday",         1,          olMonday   },
00297 //    {L"Tuesday",        2,          olTuesday  },
00298 //    {L"Wednsday",       3,          olWednesday},
00299 //    {L"Thursday",       4,          olThursday },
00300 //    {L"Friday",         5,          olFriday   },
00301 //    {L"Saturday",       6,          olSaturday }
00302 //};
00303 //
00304 //
00305 //
00306 // Outlook Items Properties:
00307 // Here listed all properties for all item types.
00308 // **************************************************************
00309 //
00310 //#define ALL_PROPS_COUNT         252
00311 //
00312 //#define OUTLOOK_STRING          L"String"
00313 //#define OUTLOOK_LONG            L"Long"
00314 //#define OUTLOOK_DATE            L"Date"
00315 //#define OUTLOOK_TIME            L"Time"             // <- *** use? ***
00316 //#define OUTLOOK_BOOL            L"Boolean"
00317 //#define OUTLOOK_OBJECT          L"Object"
00318 //
00319 //
00320 //typedef struct OutlookProps {
00321 //    int             index;
00322 //    std::wstring    type;
00323 //    bool            isSafe;
00324 //} Props;
00325 //
00326 //typedef struct OutlookPropertyTypes {
00327 //    std::wstring    name;
00328 //    std::wstring    type;
00329 //    bool            isSafe;
00330 //} PropertyTypes;
00331 //
00332 //static PropertyTypes allItemsProps[ALL_PROPS_COUNT] = {
00335 //    {L"Duration",                                OUTLOOK_LONG,                     false},                // olFullItem The entire item has been downloaded.
00336 //    {L"AllDayEvent",                             OUTLOOK_BOOL,                     false},                // True if the appointment is an all-day event (as opposed to a specified time). Corresponds to the All day event check box on the Appointment page of an AppointmentItem.
00337 //    {L"Start",                                   OUTLOOK_DATE,                     false},                // Returns or sets the starting date and time for the appointment or journal entry. Use only in calendar
00338 //    {L"End",                                     OUTLOOK_DATE,                     false},                // Returns or sets the end date and time of an appointment or journal entry. Use only on calendar
00339 //    {L"Account",                                 OUTLOOK_STRING,                   false},                // Returns or sets the account for the contact
00340 //    {L"Actions",                                 L"Actions Collection",            false},                // Returns an Actions collection that represents all the available actions for the Outlook item.
00341 //    {L"ActualWork",                              OUTLOOK_LONG,                     false},                // Returns or sets the actual effort (in minutes) spent on the task
00342 //    {L"AlternateRecipientAllowed",               OUTLOOK_BOOL,                     false},                // True if the mail message can be forwarded.
00343 //    {L"Anniversary",                             OUTLOOK_DATE,                     false},                // Returns or sets the anniversary date for the contact
00344 //    {L"Application",                             L"Application Object",            false},                // Returns an Application object that represents the parent application (Microsoft Outlook) for an object
00345 //    {L"AssistantName",                           OUTLOOK_STRING,                   false},                // Returns or sets the name of the person who is the assistant for the contact. Corresponds to the Assistant's name: box on the Details page of a ContactItem.
00346 //    {L"AssistantTelephoneNumber",                OUTLOOK_STRING,                   false},                // Returns or sets the telephone number of the person who is the assistant for the contact
00347 //    {L"Attachments",                             L"Attachments Collection",        false},                // Returns an Attachments object that represents all the attachments for the item.
00348 //    {L"AutoForwarded",                           OUTLOOK_BOOL,                     false},                // True if the mail message was automatically forwarded.
00349 //    {L"BCC",                                     OUTLOOK_STRING,                   false},                // Returns the display list of blind carbon copy (BCC) names for a MailItem. This property contains the display names only. The Recipients collection should be used to modify the BCC recipients
00350 //    {L"BillingInformation",                      OUTLOOK_STRING,                   false},                // Returns or sets the billing information associated with the Outlook item. This is a free-form text field
00351 //    {L"Birthday",                                OUTLOOK_DATE,                     false},                // Returns or sets the birthday for the contact.Corresponds to the Birthday: field on the Details page of a ContactItem.
00352 //    {L"Body",                                    OUTLOOK_STRING,                   true },                // Returns or sets the clear-text body of the Outlook item.
00353 //    {L"BodyFormat",                              L"OlBodyFormat constant",         false},                // Returns or sets an OlBodyFormat constant indicating the format of the body text. The body text format determines the standard used to display the text of the message. Microsoft Outlook provides three body text format options: Plain Text, Rich Text and HTML.
00354 //    {L"Business2TelephoneNumber",                OUTLOOK_STRING,                   false},                // Returns or sets the second business telephone number for the contact.
00355 //    {L"BusinessAddress",                         OUTLOOK_STRING,                   false},                // Returns or sets the whole, unparsed business address for the contact.
00356 //    {L"BusinessAddressCity",                     OUTLOOK_STRING,                   false},                // Returns or sets the city name portion of the business address for the contact
00357 //    {L"BusinessAddressCountry",                  OUTLOOK_STRING,                   false},                // Returns or sets the country code portion of the business address for the contact
00358 //    {L"BusinessAddressPostalCode",               OUTLOOK_STRING,                   false},                // Returns or sets the postal code (zip code) portion of the business address for the contact
00359 //    {L"BusinessAddressPostOfficeBox",            OUTLOOK_STRING,                   false},                // Returns or sets the post office box number portion of the business address for the contact
00360 //    {L"BusinessAddressState",                    OUTLOOK_STRING,                   false},                // Returns or sets the state code portion of the business address for the contact
00361 //    {L"BusinessAddressStreet",                   OUTLOOK_STRING,                   false},                // Returns or sets the street address portion of the business address for the contact
00362 //    {L"BusinessFaxNumber",                       OUTLOOK_STRING,                   false},                // Returns or sets the business fax number for the contact
00363 //    {L"BusinessWebPage",                         OUTLOOK_STRING,                   false},                // Returns or sets the URL of the business Web page for the contact
00364 //    {L"BusinessTelephoneNumber",                 OUTLOOK_STRING,                   false},                // Returns or sets the first business telephone number for the contact
00365 //    {L"BusyStatus",                              L"OlBusyState constant",          false},                // Returns or sets the busy status of the user for the appointment. Can be one of the following OlBusyStatus constants: olBusy(2), olFree(0), olOutOfOffice(3), or olTentative(1).
00366 //    {L"CallbackTelephoneNumber",                 OUTLOOK_STRING,                   false},                // Returns or sets the callback telephone number for the contact
00367 //    {L"CardData",                                OUTLOOK_STRING,                   false},                // Returns or sets a String representing the text of the card data for the task.
00368 //    {L"CarTelephoneNumber",                      OUTLOOK_STRING,                   false},                // Returns or sets the car telephone number for the contact
00369 //    {L"Categories",                              OUTLOOK_STRING,                   false},                // Returns or sets the categories assigned to the Outlook item.
00370 //    {L"CC",                                      OUTLOOK_STRING,                   false},                // Returns the display list of carbon copy (CC) names for a MailItem. This property contains the display names only. The Recipients collection should be used to modify the CC recipients
00371 //    {L"Children",                                OUTLOOK_STRING,                   false},                // Returns or sets the names of the children of the contact
00372 //    {L"Class",                                   L"OlObjectClass constant",        false},                // Returns an OlObjectClass constant indicating the object's class. Read-only
00373 //    {L"Companies",                               OUTLOOK_STRING,                   false},                // Returns or sets the names of the companies associated with the Outlook item. This is a free-form text field
00374 //    {L"CompanyAndFullName",                      OUTLOOK_STRING,                   false},                // Returns a String representing the concatenated company name and full name for the contact
00375 //    {L"CompanyLastFirstNoSpace",                 OUTLOOK_STRING,                   false},                // Returns a String representing the company name for the contact followed by the concatenated last name, first name, and middle name with no space between the last and first names. This property is parsed from the CompanyName, LastName, FirstName and MiddleName properties.
00376 //    {L"CompanyLastFirstSpaceOnly",               OUTLOOK_STRING,                   false},                // Returns a String representing the company name for the contact followed by the concatenated last name, first name, and middle name with spaces between the last, first, and middle names. This property is parsed from the CompanyName, LastName, FirstName and MiddleName properties.
00377 //    {L"CompanyMainTelephoneNumber",              OUTLOOK_STRING,                   false},                // Returns or sets the company main telephone number for the contact
00378 //    {L"CompanyName",                             OUTLOOK_STRING,                   false},                // Returns or sets the company name for the contact
00379 //    {L"Complete",                                OUTLOOK_BOOL,                     false},                // True if the task is completed
00380 //    {L"ComputerNetworkName",                     OUTLOOK_STRING,                   false},                // Returns or sets the name of the computer network for the contact
00381 //    {L"ConferenceServerAllowExternal",           L"--",                            false},                // Reserved for future use
00382 //    {L"ConferenceServerPassword",                L"--",                            false},                // Reserved for future use.
00383 //    {L"ContactNames",                            OUTLOOK_STRING,                   false},                // Returns a String representing the contact names associated with the journal entry. This property contains the display names for the contacts only. Use the Recipients object to modify the contents of this string.
00384 //    {L"ConversationIndex",                       OUTLOOK_STRING,                   false},                // Returns a String representing the index of the conversation thread of the item. Read-only.
00385 //    {L"ConversationTopic",                       OUTLOOK_STRING,                   false},                // Returns the topic of the conversation thread of the item.
00386 //    {L"CreationTime",                            OUTLOOK_DATE,                     false},                // Returns the creation time for the Outlook item. This property corresponds to the MAPI property PR_CREATION_TIME
00387 //    {L"CustomerID",                              OUTLOOK_STRING,                   false},                // Returns or sets the customer ID for the contact
00388 //    {L"DateCompleted",                           OUTLOOK_DATE,                     false},                // Returns or sets the completion date of the task
00389 //    {L"DeferredDeliveryTime",                    OUTLOOK_DATE,                     false},                // Returns or sets the date and time the mail message is to be delivered. This property corresponds to the MAPI property PR_DEFERRED_DELIVERY_TIME
00390 //    {L"DelegationState",                         L"OlTaskDelegationState",         false},                // Returns the delegation state of the task. Can be one of the following OlTaskDelegationState constants: olTaskDelegationAccepted(2), olTaskDelegationDeclined(3), olTaskDelegationUnknown(1), or olTaskNotDelegated(0)
00391 //    {L"Delegator",                               OUTLOOK_STRING,                   false},                // Returns a String representing the display name of the delegator for the task.
00392 //    {L"DeleteAfterSubmit",                       OUTLOOK_BOOL,                     false},                // True if a copy of the mail message is not saved upon being sent. False if a copy is saved.
00393 //    {L"Department",                              OUTLOOK_STRING,                   false},                // Returns or sets the department name for the contact
00394 //    {L"DownloadState",                           L"OlDownloadState constant",      false},                // Returns or sets an OlDownloadState constant indicating the download state of the item. Read-only OlDownloadState.
00395 //    {L"DueDate",                                 OUTLOOK_DATE,                     false},                // Returns or sets a Date indicating the due date for the task.
00396 //    {L"Email1Address",                           OUTLOOK_STRING,                   true },                // Returns or sets a String representing the e-mail address of the first e-mail entry for the contact.
00397 //    {L"Email1AddressType",                       OUTLOOK_STRING,                   true },                // Returns or sets a String representing the address type (such as EX or SMTP) of the first e-mail entry for the contact. This is a free-form text field, but it must match the actual type of an existing mail transport.
00398 //    {L"Email1DisplayName",                       OUTLOOK_STRING,                   true },                // Returns a String representing the display name of the first e-mail address for the contact. This property is set to the value of the FullName property by default.
00399 //    {L"Email1EntryID",                           OUTLOOK_STRING,                   false},                // Returns a String representing the entry ID of the first e-mail address for the contact.
00400 //    {L"Email2Address",                           OUTLOOK_STRING,                   true },                // Returns or sets the e-mail address of the second e-mail entry for the contact
00401 //    {L"Email2AddressType",                       OUTLOOK_STRING,                   true },                // Returns or sets a String representing the address type (such as EX or SMTP) of the second e-mail entry for the contact. This is a free-form text field, but it must match the actual type of an existing mail transport.
00402 //    {L"Email2DisplayName",                       OUTLOOK_STRING,                   true },                // Returns a String representing the display name of the second e-mail entry for the contact. This property is set to the value of the FullName property by default.
00403 //    {L"Email2EntryID",                           OUTLOOK_STRING,                   false},                // Returns a String representing the entry ID of the second e-mail entry for the contact.
00404 //    {L"Email3Address",                           OUTLOOK_STRING,                   true },                // Returns or sets the e-mail address of the third e-mail entry for the contact
00405 //    {L"Email3AddressType",                       OUTLOOK_STRING,                   true },                // Returns or sets a String representing the address type (such as EX or SMTP) of the third e-mail entry for the contact. This is a free-form text field, but it must match the actual type of an existing mail transport.
00406 //    {L"Email3DisplayName",                       OUTLOOK_STRING,                   true },                // Returns a String representing the display name of the third e-mail entry for the contact. This property is set to the value of the FullName property by default.
00407 //    {L"Email3EntryID",                           OUTLOOK_STRING,                   false},                // Returns a String representing the entry ID of the third e-mail entry for the contact.
00408 //    {L"EntryID",                                 OUTLOOK_STRING,                   false},                // Returns a String representing the unique entry ID of the object. This property corresponds to the MAPI property PR_ENTRYID. MAPI systems assign a permanent, unique ID string when an object is created that does not change from one MAPI session to another. The EntryID property is not set for an Outlook item until it is saved or sent. Also, the EntryID changes when an item is moved into another folder. Read-only.
00409 //    {L"ExpiryTime",                              OUTLOOK_DATE,                     false},                // Returns or sets the date and time at which the item becomes invalid and can be deleted
00410 //    {L"FileAs",                                  OUTLOOK_STRING,                   false},                // Returns or sets the default keyword string assigned to the contact when it is filed
00411 //    {L"FirstName",                               OUTLOOK_STRING,                   false},                // Returns or sets the first name for the contact.
00412 //    {L"FlagDueBy",                               OUTLOOK_DATE,                     false},                // Returns or sets the date by which this mail message is due. This property is only valid if the FlagStatus property is also set for the message. This property corresponds to the MAPI property PR_REPLY_TIME
00413 //    {L"FlagRequest",                             OUTLOOK_STRING,                   false},                // Returns or sets the requested action for the mail message. This is a free-form text field. This property is only valid if the FlagStatus property is also set for the message
00414 //    {L"FlagStatus",                              L"OlFlagStatus constant",         false},                // Returns or sets the flag status for the mail message. Can be one of the following OlFlagStatus constants: olFlagComplete(1), olFlagMarked(2), or olNoFlag(0).
00415 //    {L"FormDescription",                         L"FormDescriprion Object",        false},                // Returns the FormDescription object that represents the form description for the specified Microsoft Outlook item.
00416 //    {L"FTPSite",                                 OUTLOOK_STRING,                   false},                // Returns the FTP site entry for the contact
00417 //    {L"FullName",                                OUTLOOK_STRING,                   false},                // Returns or sets the whole, unparsed full name for the contact
00418 //    {L"FullNameAndCompany",                      OUTLOOK_STRING,                   false},                // Returns a String representing the full name and company of the contact by concatenating the values of the FullName and CompanyName properties.
00419 //    {L"Gender",                                  L"OlGender constant",             false},                // Returns or sets the gender of the contact. Can be one of the following OlGender constants: olFemale(1), olMale(2), or olUnspecified(0).
00420 //    {L"GetInspector",                            L"Inspector Object",              false},                // Returns an Inspector object that represents an inspector initialized to contain the specified item. This property is useful for returning a new Inspector object in which to display the item, as opposed to using the ActiveInspector method and setting the CurrentItem property
00421 //    {L"GovernmentIDNumber",                      OUTLOOK_STRING,                   false},                // Returns or sets the government ID number for the contact
00422 //    {L"Hobby",                                   OUTLOOK_STRING,                   false},                // Returns or sets the hobby for the contact
00423 //    {L"Home2TelephoneNumber",                    OUTLOOK_STRING,                   false},                // Returns or sets the second home telephone number for the contact
00424 //    {L"HomeAddress",                             OUTLOOK_STRING,                   false},                // Returns or sets the full, unparsed text of the home address for the contact
00425 //    {L"HomeAddressCity",                         OUTLOOK_STRING,                   false},                // Returns or sets the city portion of the home address for the contact
00426 //    {L"HomeAddressCountry",                      OUTLOOK_STRING,                   false},                // Returns or sets the country portion of the home address for the contact
00427 //    {L"HomeAddressPostalCode",                   OUTLOOK_STRING,                   false},                // Returns or sets the postal code portion of the home address for the contact
00428 //    {L"HomeAddressPostOfficeBox",                OUTLOOK_STRING,                   false},                // Returns or sets the post office box number portion of the home address for the contact
00429 //    {L"HomeAddressState",                        OUTLOOK_STRING,                   false},                // Returns or sets the state portion of the home address for the contact
00430 //    {L"HomeAddressStreet",                       OUTLOOK_STRING,                   false},                // Returns or sets the street portion of the home address for the contact
00431 //    {L"HomeFaxNumber",                           OUTLOOK_STRING,                   false},                // Returns or sets the home fax number for the contact
00432 //    {L"HomeTelephoneNumber",                     OUTLOOK_STRING,                   false},                // Returns or sets the first home telephone number for the contact
00433 //    {L"HTMLBody",                                OUTLOOK_STRING,                   false},                // Returns or sets a String representing the HTML body of the specified item. The HTMLBody property should be an HTML syntax string.Setting the HTMLBody property sets the EditorType property of the item's Inspector to olEditorHTML.Setting the HTMLBody property will always update the Body property immediately.Setting the Body property will clear the contents of the HTMLBody property on HTML aware stores.The EditorType property is not affected when you merely access the Body property of the item (as in MsgBox myItem.Body), but when you reset the Body property (as in myItem.Body = "This is a new body"), the EditorType reverts back to the user's default editor.
00434 //    {L"IMAddress",                               OUTLOOK_STRING,                   false},                // Returns or sets a String that represents a contact's Microsoft Instant Messenger address.
00435 //    {L"Importance",                              L"OlImportance constant",         false},                // Returns or sets the relative importance level for the Outlook item. Can be one of the following OlImportance constants: olImportanceHigh(2), olImportanceLow(0), or olImportanceNormal(1). This property corresponds to the MAPI property PR_IMPORTANCE.
00436 //    {L"Initials",                                OUTLOOK_STRING,                   false},                // Returns or sets the initials for the contact
00437 //    {L"InternetCodepage",                        OUTLOOK_LONG,                     false},                // Returns or sets a Long that determines the Internet code page used by the item. The Internet code page defines the text encoding scheme used by the item. Read/write
00438 //    {L"InternetFreeBusyAddress",                 OUTLOOK_STRING,                   false},                // Returns or sets a String corresponding to the Address box on the Details tab for a contact. This box can contain the URL location of the user's free-busy information in vCard Free-Busy standard format.
00439 //    {L"IsConflict",                              OUTLOOK_BOOL,                     false},                // Returns a Boolean that determines if the item is in conflict. Whether or not an item is in conflict is determined by the state of the application. For example, when a user is offline and tries to access an online folder the action will fail. In this scenario, the IsConflict property will return True. Read-only.
00440 //    {L"ISDNNumber",                              OUTLOOK_STRING,                   false},                // Returns or sets the ISDN number for the contact
00441 //    {L"IsOnlineMeeting",                         OUTLOOK_BOOL,                     false},                // True if this is an online meeting. Read/write Boolean
00442 //    {L"IsRecurring",                             OUTLOOK_BOOL,                     false},                // True if the appointment or task is a recurring appointment or task. When the GetRecurrencePattern method is used with an AppointmentItem or TaskItem object, this property is set to True
00443 //    {L"ItemProperties",                          L"ItemProperties Collection",     false},                // Returns an ItemProperties collection that represents all properties associated with an item.
00444 //    {L"JobTitle",                                OUTLOOK_STRING,                   false},                // Returns or sets the job title for the contact
00445 //    {L"Journal",                                 OUTLOOK_BOOL,                     false},                // True if the transaction of the contact will be journalized. The default value is False
00446 //    {L"Language",                                OUTLOOK_STRING,                   false},                // Returns or sets the language for the contact
00447 //    {L"LastFirstAndSuffix",                      OUTLOOK_STRING,                   false},                // Returns a String representing the last name, first name, middle name, and suffix of the contact. There is a comma between the last and first names and spaces between all the names and the suffix. This property is parsed from the LastName, FirstName, MiddleName and Suffix properties.
00448 //    {L"LastFirstNoSpace",                        OUTLOOK_STRING,                   false},                // Returns a String representing the concatenated last name, first name, and middle name of the contact with no space between the last name and the first name. This property is parsed from the LastName, FirstName and MiddleName properties.
00449 //    {L"LastFirstNoSpaceAndSuffix",               OUTLOOK_STRING,                   false},                // Returns the last name, first name, and suffix of the user without a space.
00450 //    {L"LastFirstNoSpaceCompany",                 OUTLOOK_STRING,                   false},                // Returns a String representing the concatenated last name, first name, and middle name of the contact with no space between the last name and the first name. The company name for the contact is included after the middle name. This property is parsed from the LastName, FirstName, MiddleName, and CompanyName properties.
00451 //    {L"LastFirstSpaceOnly",                      OUTLOOK_STRING,                   false},                // Returns a String representing the concatenated last name, first name, and middle name of the contact with spaces between them. This property is parsed from the LastName, FirstName and MiddleName properties.
00452 //    {L"LastFirstSpaceOnlyCompany",               OUTLOOK_STRING,                   false},                // Returns a String representing the concatenated last name, first name, and middle name of the contact with spaces between them. The company name for the contact is after the middle name. This property is parsed from the LastName, FirstName, MiddleName, and CompanyName properties.
00453 //    {L"Date",                                    OUTLOOK_DATE,                     false},                // Returns the time that the Outlook item was last modified. This property corresponds to the MAPI property PR_LAST_MODIFICATION_TIME (Ex LastModificationTime)
00454 //    {L"LastName",                                OUTLOOK_STRING,                   false},                // Returns or sets the last name for the contact
00455 //    {L"LastNameAndFirstName",                    OUTLOOK_STRING,                   false},                // Returns a String representing the concatenated last name and first name for the contact.
00456 //    {L"Links",                                   L"Links Object",                  false},                // Returns a collection of Link objects that represent the contacts to which the item is linked
00457 //    {L"Location",                                OUTLOOK_STRING,                   false},                // Returns or sets the specific office location (for example, Building 1 Room 1 or Suite 123) for the appointment. This property corresponds to the MAPI property PR_OFFICE_LOCATION
00458 //    {L"MailingAddress",                          OUTLOOK_STRING,                   false},                // Returns or sets the full, unparsed selected mailing address for the contact
00459 //    {L"MailingAddressCity",                      OUTLOOK_STRING,                   false},                // Returns or sets a String representing the city name portion of the selected mailing address of the contact.
00460 //    {L"MailingAddressCountry",                   OUTLOOK_STRING,                   false},                // Returns or sets a String representing the country/region code portion of the selected mailing address of the contact.
00461 //    {L"MailingAddressPostalCode",                OUTLOOK_STRING,                   false},                // Returns or sets a String representing the postal code (zip code) portion of the selected mailing address of the contact.
00462 //    {L"MailingAddressPostOfficeBox",             OUTLOOK_STRING,                   false},                // Returns or sets a String representing the post office box number portion of the selected mailing address of the contact.
00463 //    {L"MailingAddressState",                     OUTLOOK_STRING,                   false},                // Returns or sets a String representing the state code portion for the selected mailing address of the contact
00464 //    {L"MailingAddressStreet",                    OUTLOOK_STRING,                   false},                // Returns or sets a String representing the street address portion of the selected mailing address of the contact
00465 //    {L"ManagerName",                             OUTLOOK_STRING,                   false},                // Returns or sets the manager name for the contact
00466 //    {L"MarkForDownload",                         L"OlRemoteStatus constant",       false},                // Returns or sets an OlRemoteStatus constant that determines the status of an item once it is received by a remote user. This property gives remote users with less-than-ideal data-transfer capabilities increased messaging flexibility. Read/write.
00467 //    {L"MeetingStatus",                           L"OlMeetingStatus",               false},                // OlRemoteStatus can be one of these OlRemoteStatus constants.
00468 //    {L"MessageClass",                            OUTLOOK_STRING,                   false},                // Returns or sets a String representing the message class for the Microsoft Outlook item or Action. This property corresponds to the MAPI property PR_MESSAGE_CLASS. The MessageClass property links the item to the form on which it is based. When an item is selected, Outlook uses the message class to locate the form and expose its properties, such as Reply commands.
00469 //    {L"MiddleName",                              OUTLOOK_STRING,                   false},                // Returns or sets a String representing the middle name for the contact.This property is parsed from the FullName property, but may be changed or entered independently should it be parsed incorrectly. Note that any such changes or entries to this property will be overwritten by any subsequent changes of entries to FullName.
00470 //    {L"Mileage",                                 OUTLOOK_STRING,                   false},                // Returns or sets a String representing the mileage for an item. This is a free-form string field and can be used to store mileage information associated with the item (for example, 100 miles documented for an appointment, contact, or task) for purposes of reimbursement.
00471 //    {L"MobileTelephoneNumber",                   OUTLOOK_STRING,                   false},                // Returns or sets a String representing the mobile telephone number for the contact.
00472 //    {L"NetMeetingAlias",                         OUTLOOK_STRING,                   false},                // Returns or sets a String indicating the user's Microsoft NetMeeting ID, or alias.
00473 //    {L"NetMeetingAutoStart",                     OUTLOOK_BOOL,                     false},                // True if this online meeting starts automatically. Read/write Boolean
00474 //    {L"NetMeetingDocPathName",                   OUTLOOK_STRING,                   false},                // Returns or sets a String representing the full path to the Microsoft Office document specified for a Microsoft NetMeeting online meeting. Read/write
00475 //    {L"NetMeetingOrganizerAlias",                OUTLOOK_STRING,                   false},                // Returns or sets a String representing the alias of the meeting organizer, if this is an online meeting. Read/write.
00476 //    {L"NetMeetingServer",                        OUTLOOK_STRING,                   false},                // Returns or sets a String specifying the name of the Microsoft NetMeeting server being used for an online meeting. Read/write
00477 //    {L"NetMeetingType",                          L"OlNetMeetingType constant",     false},                // Sets or returns an OlNetMeetingType constant specifying the type of Microsoft NetMeeting. Read/write.
00478 //    {L"NetShowURL",                              OUTLOOK_STRING,                   false},                // OlNetMeetingType can be one of these OlNetMeetingType constants.
00479 //    {L"NickName",                                OUTLOOK_STRING,                   false},                // Returns or sets a String representing the nickname for the contact.
00480 //    {L"NoAging",                                 OUTLOOK_BOOL,                     false},                // True to not age the Outlook item.
00481 //    {L"OfficeLocation",                          OUTLOOK_STRING,                   false},                // Returns or sets a String specifying the specific office location (for example, Building 1 Room 1 or Suite 123) for the contact. This property corresponds to the MAPI property PR_OFFICE_LOCATION.
00482 //    {L"OptionalAttendees",                       OUTLOOK_STRING,                   false},                // Returns or sets a String representing the display string of optional attendees names for the appointment. This property corresponds to the MAPI property PR_DISPLAY_CC. Read/write
00483 //    {L"Ordinal",                                 OUTLOOK_LONG,                     false},                // Returns or sets a Long specifying the position in the view (ordinal) for the task.
00484 //    {L"OrganizationalIDNumber",                  OUTLOOK_STRING,                   false},                // Returns or sets the organizational ID number for the contact
00485 //    {L"Organizer",                               OUTLOOK_STRING,                   false},                // Returns the name of the organizer of the appointment
00486 //    {L"OriginatorDeliveryReportRequested",       OUTLOOK_BOOL,                     false},                // Returns or sets a Boolean value that determines whether the originator of the meeting item or mail message will receive a delivery report. Each transport provider that handles your message sends you a single delivery notification containing the names and addresses of each recipient to whom it was delivered. Note that delivery does not imply that the message has been read. The OriginatorDeliveryReportRequested property corresponds to the MAPI property PR_ORIGINATOR_DELIVERY_REPORT_REQUESTED. True if the originator requested a delivery receipt on the message.
00487 //    {L"OtherAddress",                            OUTLOOK_STRING,                   false},                // Returns or sets the other address for the contact
00488 //    {L"OtherAddressCity",                        OUTLOOK_STRING,                   false},                // Returns or sets the city portion of the other address for the contact
00489 //    {L"OtherAddressCountry",                     OUTLOOK_STRING,                   false},                // Returns or sets the country portion of the other address for the contact
00490 //    {L"OtherAddressPostalCode",                  OUTLOOK_STRING,                   false},                // Returns or sets the postal code portion of the other address for the contact
00491 //    {L"OtherAddressPostOfficeBox",               OUTLOOK_STRING,                   false},                // Returns or sets the post office box portion of the other address for the contact
00492 //    {L"OtherAddressState",                       OUTLOOK_STRING,                   false},                // Returns or sets the state portion of the other address for the contact
00493 //    {L"OtherAddressStreet",                      OUTLOOK_STRING,                   false},                // Returns or sets the street portion of the other address for the contact
00494 //    {L"OtherFaxNumber",                          OUTLOOK_STRING,                   false},                // Returns or sets the other fax number for the contact
00495 //    {L"OtherTelephoneNumber",                    OUTLOOK_STRING,                   false},                // Returns or sets the other telephone number for the contact
00496 //    {L"OutlookInternalVersion",                  OUTLOOK_LONG,                     false},                // Returns the build number of the Outlook application for an Outlook item.
00497 //    {L"OutlookVersion",                          OUTLOOK_STRING,                   false},                // Returns the major and minor version number of the Outlook application for an Outlook item.
00498 //    {L"Owner",                                   OUTLOOK_STRING,                   false},                // Returns or sets the owner for the task. This is a free-form string field. Setting this property to someone other than the current user does not have the effect of delegating the task
00499 //    {L"Ownership",                               L"OlTaskOwnership",               false},                // Returns an OlTaskOwnership specifying the ownership state of the task.
00500 //    {L"PagerNumber",                             OUTLOOK_STRING,                   false},                // Returns or sets the pager number for the contact
00501 //    {L"Parent",                                  L"Object Object",                 false},                // Returns the parent object of the specified object
00502 //    {L"PercentComplete",                         OUTLOOK_LONG,                     false},                // Returns or sets the percentage of the task completed at the current date and time
00503 //    {L"PersonalHomePage",                        OUTLOOK_STRING,                   false},                // Returns or sets the URL of the personal Web page for the contact
00504 //    {L"PrimaryTelephoneNumber",                  OUTLOOK_STRING,                   false},                // Returns or sets the primary telephone number for the contact
00505 //    {L"Profession",                              OUTLOOK_STRING,                   false},                // Returns or sets the profession for the contact
00506 //    {L"RadioTelephoneNumber",                    OUTLOOK_STRING,                   false},                // Returns or sets the radio telephone number for the contact
00507 //    {L"ReadReceiptRequested",                    OUTLOOK_BOOL,                     false},                // True if a read receipt has been requested by the sender. This property corresponds to the MAPI property PR_READ_RECEIPT_REQUESTED.
00508 //    {L"ReceivedByEntryID",                       OUTLOOK_STRING,                   false},                // Returns a String representing the EntryID for the true recipient as set by the transport provider delivering the mail message. This property corresponds to the MAPI property PR_RECEIVED_BY_ENTRYID.
00509 //    {L"ReceivedByName",                          OUTLOOK_STRING,                   false},                // Returns a String representing the display name of the true recipient for the mail message. This property corresponds to the MAPI property PR_RECEIVED_BY_NAME.
00510 //    {L"ReceivedOnBehalfOfEntryID",               OUTLOOK_STRING,                   false},                // Returns a String representing the EntryID of the user delegated to represent the recipient for the mail message. This property corresponds to the MAPI property PR_RCVD_REPRESENTING_ENTRYID.
00511 //    {L"ReceivedOnBehalfOfName",                  OUTLOOK_STRING,                   false},                // Returns a String representing the display name of the user delegated to represent the recipient for the mail message. This property corresponds to the MAPI property PR_RCVD_REPRESENTING_NAME.
00512 //    {L"ReceivedTime",                            OUTLOOK_DATE,                     false},                // Returns the date and time at which the mail message, meeting item, or post was received
00513 //    {L"RecipientReassignmentProhibited",         OUTLOOK_BOOL,                     false},                // True if the recipient cannot forward the mail message.
00514 //    {L"Recipients",                              L"Recipients Collection",         false},                // Returns a Recipients collection that represents all the recipients for the Outlook item. Read-only
00515 //    {L"RecurrenceState",                         L"OlRecurrenceState constants",   false},                // Returns an OlRecurrenceState constant indicating the recurrence property of the specified object. Read-only
00516 //    {L"ReferredBy",                              OUTLOOK_STRING,                   false},                // Returns or sets the referral name entry for the contact
00517 //    {L"ReminderMinutesBeforeStart",              OUTLOOK_LONG,                     false},                // Returns or sets the number of minutes the reminder should occur prior to the start of the appointment
00518 //    {L"ReminderOverrideDefault",                 OUTLOOK_BOOL,                     false},                // True if the reminder overrides the default reminder behavior for the appointment, mail item, or task.
00519 //    {L"ReminderPlaySound",                       OUTLOOK_BOOL,                     false},                // True if the reminder should play a sound when it occurs for this appointment or task
00520 //    {L"ReminderSet",                             OUTLOOK_BOOL,                     false},                // True if a reminder has been set for this appointment, mail item or task.
00521 //    {L"ReminderSoundFile",                       OUTLOOK_STRING,                   false},                // Returns or sets the path and filename of the sound file to play when the reminder occurs for the appointment, mail message, or task. This property is only valid if the ReminderOverrideDefault and ReminderPlaySound properties are set to True
00522 //    {L"ReminderTime",                            OUTLOOK_DATE,                     false},                // Returns or sets the date and time at which the reminder should occur for this item.
00523 //    {L"RemoteStatus",                            L"OlRemoteStatus constant",       false},                // Returns or sets the remote status of the mail message. Can be one of the following OlRemoteStatus constants: olMarkedForCopy(3), olMarkedForDelete(4), olMarkedForDownload(2), olRemoteStatusNone(0), or olUnMarked(1).
00524 //    {L"ReplyRecipientNames",                     OUTLOOK_STRING,                   false},                // Returns the semicolon-delimited list of reply recipients for the mail message. This property only contains the display names for the reply recipients. The reply recipients list should be set by using the ReplyRecipients collection
00525 //    {L"ReplyRecipients",                         L"Recipient Collection",          false},                // Returns a Recipients collection that represents all the reply recipient objects for the mail message.
00526 //    {L"ReplyTime",                               OUTLOOK_DATE,                     false},                // Returns or sets a Date indicating the reply time for the appointment. Read/write
00527 //    {L"RequiredAttendees",                       OUTLOOK_STRING,                   false},                // Returns the semicolon-delimited string of required attendee names for the meeting appointment. This property only contains the display names for the required attendees. The attendee list should be set by using the Recipients collection.
00528 //    {L"Resources",                               OUTLOOK_STRING,                   false},                // Returns the semicolon-delimited string of resource names for the meeting. This property contains the display names only. The Recipients collection should be used to modify the resource recipients. Resources are added as BCC recipients to the collection
00529 //    {L"ResponseRequested",                       OUTLOOK_BOOL,                     false},                // True if the sender would like a response to the meeting request for the appointment
00530 //    {L"ResponseState",                           L"OlTaskResponse constants",      false},                // Returns or sets an OlTaskResponse constant indicating the overall status of the response to the specified task request.
00531 //    {L"ResponseStatus",                          L"OlResponseStatus constant",     false},                // Returns an OlResponseStatus constant indicating the overall status of the meeting for the current user for the appointment. Read-only
00532 //    {L"Role",                                    OUTLOOK_STRING,                   false},                // Returns or sets the free-form text string associating the owner of a task with a role for the task
00533 //    {L"Saved",                                   OUTLOOK_BOOL,                     false},                // True if the Microsoft Outlook item has not been modified since the last save. Read-only Boolean
00534 //    {L"SaveSentMessageFolder",                   L"MAPIFolder Object",             false},                // Returns a MAPIFolder object that represents the folder in which a copy of the mail message will be saved upon being sent.
00535 //    {L"SchedulePlusPriority",                    OUTLOOK_STRING,                   false},                // Returns or sets the Microsoft Schedule+ priority for the task. Can be 1 through 9, A through Z, or A1 through Z9. Priority 1 is the highest
00536 //    {L"SelectedMailingAddress",                  L"OlMailingAddress constant",     false},                // Returns or sets an OlMailingAdress constant indicating the type of the mailing address for the contact
00537 //    {L"SenderName",                              OUTLOOK_STRING,                   false},                // Returns a String indicating the display name of the sender for the mail message, meeting item or post. This property corresponds to the MAPI property PR_SENDER_NAME.
00538 //    {L"Sensitivity",                             L"OlSensitivity",                 false},                // Returns or sets the sensitivity for the Outlook item. Can be one of the following OlSensitivity constants: olConfidential(3), olNormal(0), olPersonal(1), or olPrivate(2). This property corresponds to the MAPI property PR_SENSITIVITY
00539 //    {L"Sent",                                    OUTLOOK_BOOL,                     false},                // Returns a Boolean value that indicates if a message has been sent. True if sent, False if not sent. Read-only.In general, there are three different kinds of messages: sent, posted, and saved. Sent messages are traditional e-mail messages or meeting items sent to a recipient or public folder. Posted messages are created in a public folder. Saved messages are created and saved without either sending or posting.
00540 //    {L"SentOn",                                  OUTLOOK_DATE,                     false},                // Returns the date and time on which the mail message, meeting item, or post was sent. This property corresponds to the MAPI property PR_CLIENT_SUBMIT_TIME. When you send a meeting request item using the object's Send method, the transport provider sets the ReceivedTime and SentOn properties for you
00541 //    {L"SentOnBehalfOfName",                      OUTLOOK_STRING,                   false},                // Returns the display name for the intended sender of the mail message. This property corresponds to the MAPI property PR_SENT_REPRESENTING_NAME
00542 //    {L"Session",                                 L"NameSpace Object",              false},                // Returns the NameSpace object for the current session
00543 //    {L"Size",                                    OUTLOOK_LONG,                     false},                // Returns the size (in bytes) of the Outlook item.
00544 //    {L"Spouse",                                  OUTLOOK_STRING,                   false},                // Returns or sets the spouse name entry for the contact
00545 //    {L"StartDate",                               OUTLOOK_DATE,                     false},                // Returns or sets the starting date and time for the task
00546 //    {L"Status",                                  L"OlTaskStatus constant",         false},                // Returns or sets the status for the task. Can be one of the following OlTaskStatus constants: olTaskComplete(2), olTaskDeferred(4), olTaskInProgress(1), olTaskNotStarted(0), or olTaskWaiting(3).
00547 //    {L"StatusOnCompletionRecipients",            OUTLOOK_STRING,                   false},                // Returns or sets a semicolon-delimited String of display names for recipients who will receive status upon completion of the task. This property is calculated from the Recipients property. Recipients returned by the StatusOnCompletionRecipients property correspond to BCC recipients in the Recipients collection.
00548 //    {L"StatusUpdateRecipients",                  OUTLOOK_STRING,                   false},                // Returns a semicolon-delimited String of display names for recipients who receive status updates for the task. This property is calculated from the Recipients property. Recipients returned by the StatusUpdateRecipients property correspond to CC recipients in the Recipients collection.
00549 //    {L"Subject",                                 OUTLOOK_STRING,                   false},                // Returns or sets the subject for the Outlook item. This property corresponds to the MAPI property PR_SUBJECT. The Subject property is the default property for Outlook items.
00550 //    {L"Submitted",                               OUTLOOK_BOOL,                     false},                // Returns a Boolean value that indicates if the item has been submitted. True if the item has been submitted. A message is always created and submitted in a folder, usually the Outbox.
00551 //    {L"Suffix",                                  OUTLOOK_STRING,                   false},                // Returns or sets the name suffix (such as Jr., III, or Ph.D.) for the contact
00552 //    {L"TeamTask",                                OUTLOOK_BOOL,                     false},                // True if the task is a team task
00553 //    {L"TelexNumber",                             OUTLOOK_STRING,                   false},                // Returns or sets the telex number for the contact
00554 //    {L"Title",                                   OUTLOOK_STRING,                   false},                // Returns or sets the title for the contact
00555 //    {L"To",                                      OUTLOOK_STRING,                   false},                // Returns or sets the semicolon-delimited list of display names for the To recipients for the Outlook item. This property contains the display names only. The To property corresponds to the MAPI property PR_DISPLAY_TO. The Recipients collection should be used to modify this property.
00556 //    {L"TotalWork",                               OUTLOOK_LONG,                     false},                // Returns or sets the total work for the task
00557 //    {L"TTYTDDTelephoneNumber",                   OUTLOOK_STRING,                   false},                // Returns or sets the TTY/TDD telephone number for the contact
00558 //    {L"UnRead",                                  OUTLOOK_BOOL,                     false},                // True if the Outlook item has not been opened (read).
00559 //    {L"User1",                                   OUTLOOK_STRING,                   false},                // Returns or sets the first Microsoft Schedule+ user for the contact.
00560 //    {L"User2",                                   OUTLOOK_STRING,                   false},                // Returns or sets the second Microsoft Schedule+ user for the contact
00561 //    {L"User3",                                   OUTLOOK_STRING,                   false},                // Returns or sets the third Microsoft Schedule+ user for the contact.
00562 //    {L"User4",                                   OUTLOOK_STRING,                   false},                // Returns or sets the fourth Microsoft Schedule+ user for the contact.
00563 //    {L"UserCertificate",                         OUTLOOK_STRING,                   false},                // Returns or sets a String containing the user's authentication certificate for the contact
00564 //    {L"UserProperties",                          L"UserProperties Collection",     false},                // Returns the UserProperties collection that represents all the user properties for the Outlook item
00565 //    {L"VotingOptions",                           OUTLOOK_STRING,                   false},                // Returns or sets a String specifying a delimited string containing the voting options for the mail message.
00566 //    {L"VotingResponse",                          OUTLOOK_STRING,                   false},                // Returns or sets a String specifying the voting response for the mail message. This property is usually set to one of the delimited values returned by the VotingOptions property on a reply to the original message.
00567 //    {L"WebPage",                                 OUTLOOK_STRING,                   false},                // Returns or sets the URL of the Web page for the contact
00568 //    {L"YomiCompanyName",                         OUTLOOK_STRING,                   false},                // Returns or sets a String indicating the Japanese phonetic rendering (yomigana) of the company name for the contact
00569 //    {L"YomiFirstName",                           OUTLOOK_STRING,                   false},                // Returns or sets a String indicating the Japanese phonetic rendering (yomigana) of the first name for the contact
00570 //    {L"YomiLastName",                            OUTLOOK_STRING,                   false},                // Returns or sets a String indicating the Japanese phonetic rendering (yomigana) of the last name for the contact
00571 //    {L"RecurrenceType",                          OUTLOOK_LONG,                     false},                // Returns or set a RecurrenceType. values are orRecursDaily...
00572 //    {L"Interval",                                OUTLOOK_LONG,                     false},                // Return the interval
00573 //    {L"MonthOfYear",                             OUTLOOK_LONG,                     false},                //
00574 //    {L"DayOfMonth",                              OUTLOOK_LONG,                     false},                //
00575 //    {L"DayOfWeekMask",                           OUTLOOK_LONG,                     false},                //
00576 //    {L"Instance",                                OUTLOOK_LONG,                     false},                //
00577 //    {L"PatternStartDate",                        OUTLOOK_DATE,                     false},                //
00578 //    {L"NoEndDate",                               OUTLOOK_BOOL,                     false},                //
00579 //    {L"PatternEndDate",                          OUTLOOK_DATE,                     false},                //
00580 //    {L"Color",                                   OUTLOOK_LONG,                     false},                // Color of note
00581 //    {L"Height",                                  OUTLOOK_LONG,                     false},                // Height of note
00582 //    {L"Width",                                   OUTLOOK_LONG,                     false},                // Width of note
00583 //    {L"Left",                                    OUTLOOK_LONG,                     false},                // Width of note
00584 //    {L"Top",                                     OUTLOOK_LONG,                     false},                // Width of note
00585 //    {L"HomeWebPage",                             OUTLOOK_STRING,                   false},                // Returns or sets the URL of the Home Web page for the contact
00586 //    {L"Occurrences",                             OUTLOOK_LONG,                     false}                 // Return or sets the number of the occurrences of the recurrence.
00587 //
00588 //};
00589 
00590 
00593 #endif

Generated on Mon Feb 4 09:50:49 2008 for Funambol Outlook Plug-in Library by  doxygen 1.5.2