00001 /* 00002 * Copyright (C) 2006-2007 Funambol, Inc. 00003 * 00004 * This program is free software; you can redistribute it and/or modify 00005 * it under the terms of the GNU General Public License version 2 as 00006 * published by the Free Software Foundation. 00007 * 00008 * This program is distributed in the hope that it will be useful, 00009 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00010 * MERCHANTABILITY, TITLE, NONINFRINGEMENT or FITNESS FOR A PARTICULAR 00011 * PURPOSE. See the GNU General Public License for more details. 00012 * 00013 * You should have received a copy of the GNU General Public License 00014 * along with this program; if not, write to the Free Software 00015 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 00016 * 02111-1307 USA 00017 */ 00018 00019 #ifndef INCL_ITEM_PROPS 00020 #define INCL_ITEM_PROPS 00021 00026 #include "base/fscapi.h" 00027 #include "outlook/defs.h" 00028 #include "winmaincpp.h" 00029 00030 #include "spdm/constants.h" 00031 00032 00034 #define ITEM_TYPES_COUNT 8 00035 #define DIFF_PROPERTY_NAMES_COUNT 2 00036 00037 00038 00041 typedef struct OutlookItemTypes { 00042 std::wstring name; 00043 OlItemType olType; 00044 OlDefaultFolders olFolderType; 00045 } ItemTypes; 00046 00047 00048 static ItemTypes itemTypes[ITEM_TYPES_COUNT] = { 00049 // name(itemType) olType olFolderType 00050 // ------------------------------------------------------------- 00051 {MAIL, olMailItem, olFolderInbox}, 00052 {APPOINTMENT, olAppointmentItem, olFolderCalendar}, 00053 {CONTACT, olContactItem, olFolderContacts}, 00054 {TASK, olTaskItem, olFolderTasks}, 00055 {JOURNAL, olJournalItem, olFolderJournal}, 00056 {NOTE, olNoteItem, olFolderNotes}, 00057 {POST, olPostItem, olFolderInbox}, 00058 {DISTRIBUTION_LIST, olDistributionListItem, olFolderContacts} 00059 00060 }; 00061 00062 00063 00064 00067 typedef struct OutlookPropertyNames { 00068 std::wstring SIFName; 00069 std::wstring OutlookName; 00070 } PropertyNames; // cond DEV 00072 00073 00074 00075 00076 static PropertyNames diffPropertyNames[DIFF_PROPERTY_NAMES_COUNT] = { 00077 // SIFName OutlookName 00078 // ------------------------------------------------ 00079 {L"HomeWebPage", L"PersonalHomePage"} 00080 //{L"BusinessWebPage", L"BusinessHomePage"} // Duplicated: inside Outlook it's the same of "WebPage" -> removed since 6.5.2 00081 //{L"Photo", L"Picture" } // managed alone in dataTransformer.cpp 00082 //{L"Date", L"LastModificationTime"} // notes: no more used 00083 }; 00084 00085 00086 00087 00088 // *********************************************************************************************** 00089 // **************************** Arrays of Item properties for Outlook **************************** 00090 // *********************************************************************************************** 00091 00092 00093 // 00094 // --------------------------------------- SAFE PROPERTIES --------------------------------------- 00095 // 00097 static WCHAR* safeCalendarProps[] = { 00098 00099 {L"Body" }, 00100 {L"OptionalAttendees" }, 00101 {NULL} 00102 00103 }; 00104 00105 00107 static WCHAR* safeContactProps[] = { 00108 00109 {L"Body" }, 00110 {L"Email1Address" }, 00111 {L"Email1AddressType" }, 00112 {L"Email1DisplayName" }, 00113 {L"Email2Address" }, 00114 {L"Email2AddressType" }, 00115 {L"Email2DisplayName" }, 00116 {L"Email3Address" }, 00117 {L"Email3AddressType" }, 00118 {L"Email3DisplayName" }, 00119 {L"IMAddress" }, 00120 {NULL} 00121 00122 }; 00123 00124 00126 static WCHAR* safeTaskProps[] = { 00127 00128 {L"Body" }, 00129 {L"ContactNames" }, 00130 {L"Owner" }, 00131 {NULL} 00132 00133 }; 00134 00135 00137 static WCHAR* safeNoteProps[] = { 00138 00139 {L"Body" }, 00140 {NULL} 00141 00142 }; 00143 00144 00145 // 00146 // ------------------------------------- COMPLEX PROPERTIES ------------------------------------- 00147 // 00149 static WCHAR* complexCalendarProps[] = { 00150 00151 {L"AllDayEvent" }, 00152 {L"Start" }, 00153 {L"End" }, 00154 {L"IsRecurring" }, 00155 {L"NoAging" }, 00156 {L"ReminderSet" }, 00157 {L"ReplyTime" }, 00158 {L"UnRead" }, 00159 {L"ReminderSoundFile" }, // Because we need to check the 'ReminderPlaySound' 00160 {L"LastModificationTime" }, // Used by SyncSource 00161 {L"Categories" }, // To convert separator: ";" into "," 00162 {NULL} 00163 00164 }; 00165 00166 00168 static WCHAR* complexContactProps[] = { 00169 00170 {L"Anniversary" }, 00171 {L"Birthday" }, 00172 {L"NoAging" }, 00173 {L"UnRead" }, 00174 {L"FirstName" }, // For first letter capitalization... 00175 {L"LastName" }, // For first letter capitalization... 00176 {L"Categories" }, // To convert separator: ";" into "," 00177 {L"LastModificationTime" }, // Used by SyncSource 00178 {L"Photo" }, // Contact's picture (b64) 00179 {NULL} 00180 00181 }; 00182 00183 00185 static WCHAR* complexMailProps[] = { 00186 00187 {L"DeferredDeliveryTime" }, 00188 {L"ExpiryTime" }, 00189 {L"FlagDueBy" }, 00190 {L"FlagStatus" }, 00191 {L"Importance" }, 00192 {L"NoAging" }, 00193 {L"ReadReceiptRequested" }, 00194 {L"ReminderSet" }, 00195 {L"ReminderTime" }, 00196 {L"Sensitivity" }, 00197 {L"UnRead" }, 00198 {L"LastModificationTime" }, // Used by SyncSource 00199 {NULL} 00200 00201 }; 00202 00203 00204 00206 static WCHAR* complexTaskProps[] = { 00207 00208 {L"Complete" }, 00209 {L"DateCompleted" }, 00210 {L"DueDate" }, 00211 {L"IsRecurring" }, 00212 {L"NoAging" }, 00213 {L"ReminderSet" }, 00214 {L"ReminderTime" }, 00215 {L"StartDate" }, 00216 {L"TeamTask" }, 00217 {L"UnRead" }, 00218 {L"Categories" }, // To convert separator: ";" into "," 00219 {L"LastModificationTime" }, // Used by SyncSource 00220 {L"ReminderSoundFile" }, // Because we need to check the 'ReminderPlaySound' 00221 {NULL} 00222 00223 }; 00224 00225 00226 00228 static WCHAR* complexNoteProps[] = { 00229 00230 {L"Subject" }, 00231 {L"Categories" }, // To convert separator: ";" into "," 00232 {L"Color" }, // It's deprecated in Outlook2007 (Categories is used) 00233 {L"LastModificationTime" }, // Used by SyncSource 00234 {NULL} 00235 00236 }; 00237 00238 00239 00241 static WCHAR* recurrenceProps[] = { 00242 00243 {L"RecurrenceType" }, 00244 {L"Interval" }, 00245 {L"MonthOfYear" }, 00246 {L"DayOfMonth" }, 00247 {L"DayOfWeekMask" }, 00248 {L"Instance" }, 00249 {L"PatternStartDate" }, 00250 {L"NoEndDate" }, 00251 {L"PatternEndDate" }, 00252 {L"Occurrences" }, 00253 {NULL} 00254 00255 }; 00256 00257 00258 00259 00260 00261 00262 // ------------------------------------------------------------------------------------------------- 00263 // ----------------------------------- not used... ------------------------------------------------- 00264 // ------------------------------------------------------------------------------------------------- 00265 // 00266 // Correspondance of OlDaysOfWeek (Mask) <-> SYSTEMTIME.wDayOfWeek 00267 // **************************************************************** 00268 //typedef struct OutlookDaysOfWeek { 00269 // std::wstring name; 00270 // WORD dayNumber; 00271 // OlDaysOfWeek dayMask; 00272 //} DaysOfWeek; 00273 // 00274 // 00275 //static DaysOfWeek daysOfWeek[7] = { 00278 // {L"Sunday", 0, olSunday }, 00279 // {L"Monday", 1, olMonday }, 00280 // {L"Tuesday", 2, olTuesday }, 00281 // {L"Wednsday", 3, olWednesday}, 00282 // {L"Thursday", 4, olThursday }, 00283 // {L"Friday", 5, olFriday }, 00284 // {L"Saturday", 6, olSaturday } 00285 //}; 00286 // 00287 // 00288 // 00289 // Outlook Items Properties: 00290 // Here listed all properties for all item types. 00291 // ************************************************************** 00292 // 00293 //#define ALL_PROPS_COUNT 252 00294 // 00295 //#define OUTLOOK_STRING L"String" 00296 //#define OUTLOOK_LONG L"Long" 00297 //#define OUTLOOK_DATE L"Date" 00298 //#define OUTLOOK_TIME L"Time" // <- *** use? *** 00299 //#define OUTLOOK_BOOL L"Boolean" 00300 //#define OUTLOOK_OBJECT L"Object" 00301 // 00302 // 00303 //typedef struct OutlookProps { 00304 // int index; 00305 // std::wstring type; 00306 // bool isSafe; 00307 //} Props; 00308 // 00309 //typedef struct OutlookPropertyTypes { 00310 // std::wstring name; 00311 // std::wstring type; 00312 // bool isSafe; 00313 //} PropertyTypes; 00314 // 00315 //static PropertyTypes allItemsProps[ALL_PROPS_COUNT] = { 00318 // {L"Duration", OUTLOOK_LONG, false}, // olFullItem The entire item has been downloaded. 00319 // {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. 00320 // {L"Start", OUTLOOK_DATE, false}, // Returns or sets the starting date and time for the appointment or journal entry. Use only in calendar 00321 // {L"End", OUTLOOK_DATE, false}, // Returns or sets the end date and time of an appointment or journal entry. Use only on calendar 00322 // {L"Account", OUTLOOK_STRING, false}, // Returns or sets the account for the contact 00323 // {L"Actions", L"Actions Collection", false}, // Returns an Actions collection that represents all the available actions for the Outlook item. 00324 // {L"ActualWork", OUTLOOK_LONG, false}, // Returns or sets the actual effort (in minutes) spent on the task 00325 // {L"AlternateRecipientAllowed", OUTLOOK_BOOL, false}, // True if the mail message can be forwarded. 00326 // {L"Anniversary", OUTLOOK_DATE, false}, // Returns or sets the anniversary date for the contact 00327 // {L"Application", L"Application Object", false}, // Returns an Application object that represents the parent application (Microsoft Outlook) for an object 00328 // {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. 00329 // {L"AssistantTelephoneNumber", OUTLOOK_STRING, false}, // Returns or sets the telephone number of the person who is the assistant for the contact 00330 // {L"Attachments", L"Attachments Collection", false}, // Returns an Attachments object that represents all the attachments for the item. 00331 // {L"AutoForwarded", OUTLOOK_BOOL, false}, // True if the mail message was automatically forwarded. 00332 // {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 00333 // {L"BillingInformation", OUTLOOK_STRING, false}, // Returns or sets the billing information associated with the Outlook item. This is a free-form text field 00334 // {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. 00335 // {L"Body", OUTLOOK_STRING, true }, // Returns or sets the clear-text body of the Outlook item. 00336 // {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. 00337 // {L"Business2TelephoneNumber", OUTLOOK_STRING, false}, // Returns or sets the second business telephone number for the contact. 00338 // {L"BusinessAddress", OUTLOOK_STRING, false}, // Returns or sets the whole, unparsed business address for the contact. 00339 // {L"BusinessAddressCity", OUTLOOK_STRING, false}, // Returns or sets the city name portion of the business address for the contact 00340 // {L"BusinessAddressCountry", OUTLOOK_STRING, false}, // Returns or sets the country code portion of the business address for the contact 00341 // {L"BusinessAddressPostalCode", OUTLOOK_STRING, false}, // Returns or sets the postal code (zip code) portion of the business address for the contact 00342 // {L"BusinessAddressPostOfficeBox", OUTLOOK_STRING, false}, // Returns or sets the post office box number portion of the business address for the contact 00343 // {L"BusinessAddressState", OUTLOOK_STRING, false}, // Returns or sets the state code portion of the business address for the contact 00344 // {L"BusinessAddressStreet", OUTLOOK_STRING, false}, // Returns or sets the street address portion of the business address for the contact 00345 // {L"BusinessFaxNumber", OUTLOOK_STRING, false}, // Returns or sets the business fax number for the contact 00346 // {L"BusinessWebPage", OUTLOOK_STRING, false}, // Returns or sets the URL of the business Web page for the contact 00347 // {L"BusinessTelephoneNumber", OUTLOOK_STRING, false}, // Returns or sets the first business telephone number for the contact 00348 // {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). 00349 // {L"CallbackTelephoneNumber", OUTLOOK_STRING, false}, // Returns or sets the callback telephone number for the contact 00350 // {L"CardData", OUTLOOK_STRING, false}, // Returns or sets a String representing the text of the card data for the task. 00351 // {L"CarTelephoneNumber", OUTLOOK_STRING, false}, // Returns or sets the car telephone number for the contact 00352 // {L"Categories", OUTLOOK_STRING, false}, // Returns or sets the categories assigned to the Outlook item. 00353 // {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 00354 // {L"Children", OUTLOOK_STRING, false}, // Returns or sets the names of the children of the contact 00355 // {L"Class", L"OlObjectClass constant", false}, // Returns an OlObjectClass constant indicating the object's class. Read-only 00356 // {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 00357 // {L"CompanyAndFullName", OUTLOOK_STRING, false}, // Returns a String representing the concatenated company name and full name for the contact 00358 // {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. 00359 // {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. 00360 // {L"CompanyMainTelephoneNumber", OUTLOOK_STRING, false}, // Returns or sets the company main telephone number for the contact 00361 // {L"CompanyName", OUTLOOK_STRING, false}, // Returns or sets the company name for the contact 00362 // {L"Complete", OUTLOOK_BOOL, false}, // True if the task is completed 00363 // {L"ComputerNetworkName", OUTLOOK_STRING, false}, // Returns or sets the name of the computer network for the contact 00364 // {L"ConferenceServerAllowExternal", L"--", false}, // Reserved for future use 00365 // {L"ConferenceServerPassword", L"--", false}, // Reserved for future use. 00366 // {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. 00367 // {L"ConversationIndex", OUTLOOK_STRING, false}, // Returns a String representing the index of the conversation thread of the item. Read-only. 00368 // {L"ConversationTopic", OUTLOOK_STRING, false}, // Returns the topic of the conversation thread of the item. 00369 // {L"CreationTime", OUTLOOK_DATE, false}, // Returns the creation time for the Outlook item. This property corresponds to the MAPI property PR_CREATION_TIME 00370 // {L"CustomerID", OUTLOOK_STRING, false}, // Returns or sets the customer ID for the contact 00371 // {L"DateCompleted", OUTLOOK_DATE, false}, // Returns or sets the completion date of the task 00372 // {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 00373 // {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) 00374 // {L"Delegator", OUTLOOK_STRING, false}, // Returns a String representing the display name of the delegator for the task. 00375 // {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. 00376 // {L"Department", OUTLOOK_STRING, false}, // Returns or sets the department name for the contact 00377 // {L"DownloadState", L"OlDownloadState constant", false}, // Returns or sets an OlDownloadState constant indicating the download state of the item. Read-only OlDownloadState. 00378 // {L"DueDate", OUTLOOK_DATE, false}, // Returns or sets a Date indicating the due date for the task. 00379 // {L"Email1Address", OUTLOOK_STRING, true }, // Returns or sets a String representing the e-mail address of the first e-mail entry for the contact. 00380 // {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. 00381 // {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. 00382 // {L"Email1EntryID", OUTLOOK_STRING, false}, // Returns a String representing the entry ID of the first e-mail address for the contact. 00383 // {L"Email2Address", OUTLOOK_STRING, true }, // Returns or sets the e-mail address of the second e-mail entry for the contact 00384 // {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. 00385 // {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. 00386 // {L"Email2EntryID", OUTLOOK_STRING, false}, // Returns a String representing the entry ID of the second e-mail entry for the contact. 00387 // {L"Email3Address", OUTLOOK_STRING, true }, // Returns or sets the e-mail address of the third e-mail entry for the contact 00388 // {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. 00389 // {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. 00390 // {L"Email3EntryID", OUTLOOK_STRING, false}, // Returns a String representing the entry ID of the third e-mail entry for the contact. 00391 // {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. 00392 // {L"ExpiryTime", OUTLOOK_DATE, false}, // Returns or sets the date and time at which the item becomes invalid and can be deleted 00393 // {L"FileAs", OUTLOOK_STRING, false}, // Returns or sets the default keyword string assigned to the contact when it is filed 00394 // {L"FirstName", OUTLOOK_STRING, false}, // Returns or sets the first name for the contact. 00395 // {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 00396 // {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 00397 // {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). 00398 // {L"FormDescription", L"FormDescriprion Object", false}, // Returns the FormDescription object that represents the form description for the specified Microsoft Outlook item. 00399 // {L"FTPSite", OUTLOOK_STRING, false}, // Returns the FTP site entry for the contact 00400 // {L"FullName", OUTLOOK_STRING, false}, // Returns or sets the whole, unparsed full name for the contact 00401 // {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. 00402 // {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). 00403 // {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 00404 // {L"GovernmentIDNumber", OUTLOOK_STRING, false}, // Returns or sets the government ID number for the contact 00405 // {L"Hobby", OUTLOOK_STRING, false}, // Returns or sets the hobby for the contact 00406 // {L"Home2TelephoneNumber", OUTLOOK_STRING, false}, // Returns or sets the second home telephone number for the contact 00407 // {L"HomeAddress", OUTLOOK_STRING, false}, // Returns or sets the full, unparsed text of the home address for the contact 00408 // {L"HomeAddressCity", OUTLOOK_STRING, false}, // Returns or sets the city portion of the home address for the contact 00409 // {L"HomeAddressCountry", OUTLOOK_STRING, false}, // Returns or sets the country portion of the home address for the contact 00410 // {L"HomeAddressPostalCode", OUTLOOK_STRING, false}, // Returns or sets the postal code portion of the home address for the contact 00411 // {L"HomeAddressPostOfficeBox", OUTLOOK_STRING, false}, // Returns or sets the post office box number portion of the home address for the contact 00412 // {L"HomeAddressState", OUTLOOK_STRING, false}, // Returns or sets the state portion of the home address for the contact 00413 // {L"HomeAddressStreet", OUTLOOK_STRING, false}, // Returns or sets the street portion of the home address for the contact 00414 // {L"HomeFaxNumber", OUTLOOK_STRING, false}, // Returns or sets the home fax number for the contact 00415 // {L"HomeTelephoneNumber", OUTLOOK_STRING, false}, // Returns or sets the first home telephone number for the contact 00416 // {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. 00417 // {L"IMAddress", OUTLOOK_STRING, false}, // Returns or sets a String that represents a contact's Microsoft Instant Messenger address. 00418 // {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. 00419 // {L"Initials", OUTLOOK_STRING, false}, // Returns or sets the initials for the contact 00420 // {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 00421 // {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. 00422 // {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. 00423 // {L"ISDNNumber", OUTLOOK_STRING, false}, // Returns or sets the ISDN number for the contact 00424 // {L"IsOnlineMeeting", OUTLOOK_BOOL, false}, // True if this is an online meeting. Read/write Boolean 00425 // {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 00426 // {L"ItemProperties", L"ItemProperties Collection", false}, // Returns an ItemProperties collection that represents all properties associated with an item. 00427 // {L"JobTitle", OUTLOOK_STRING, false}, // Returns or sets the job title for the contact 00428 // {L"Journal", OUTLOOK_BOOL, false}, // True if the transaction of the contact will be journalized. The default value is False 00429 // {L"Language", OUTLOOK_STRING, false}, // Returns or sets the language for the contact 00430 // {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. 00431 // {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. 00432 // {L"LastFirstNoSpaceAndSuffix", OUTLOOK_STRING, false}, // Returns the last name, first name, and suffix of the user without a space. 00433 // {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. 00434 // {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. 00435 // {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. 00436 // {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) 00437 // {L"LastName", OUTLOOK_STRING, false}, // Returns or sets the last name for the contact 00438 // {L"LastNameAndFirstName", OUTLOOK_STRING, false}, // Returns a String representing the concatenated last name and first name for the contact. 00439 // {L"Links", L"Links Object", false}, // Returns a collection of Link objects that represent the contacts to which the item is linked 00440 // {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 00441 // {L"MailingAddress", OUTLOOK_STRING, false}, // Returns or sets the full, unparsed selected mailing address for the contact 00442 // {L"MailingAddressCity", OUTLOOK_STRING, false}, // Returns or sets a String representing the city name portion of the selected mailing address of the contact. 00443 // {L"MailingAddressCountry", OUTLOOK_STRING, false}, // Returns or sets a String representing the country/region code portion of the selected mailing address of the contact. 00444 // {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. 00445 // {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. 00446 // {L"MailingAddressState", OUTLOOK_STRING, false}, // Returns or sets a String representing the state code portion for the selected mailing address of the contact 00447 // {L"MailingAddressStreet", OUTLOOK_STRING, false}, // Returns or sets a String representing the street address portion of the selected mailing address of the contact 00448 // {L"ManagerName", OUTLOOK_STRING, false}, // Returns or sets the manager name for the contact 00449 // {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. 00450 // {L"MeetingStatus", L"OlMeetingStatus", false}, // OlRemoteStatus can be one of these OlRemoteStatus constants. 00451 // {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. 00452 // {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. 00453 // {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. 00454 // {L"MobileTelephoneNumber", OUTLOOK_STRING, false}, // Returns or sets a String representing the mobile telephone number for the contact. 00455 // {L"NetMeetingAlias", OUTLOOK_STRING, false}, // Returns or sets a String indicating the user's Microsoft NetMeeting ID, or alias. 00456 // {L"NetMeetingAutoStart", OUTLOOK_BOOL, false}, // True if this online meeting starts automatically. Read/write Boolean 00457 // {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 00458 // {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. 00459 // {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 00460 // {L"NetMeetingType", L"OlNetMeetingType constant", false}, // Sets or returns an OlNetMeetingType constant specifying the type of Microsoft NetMeeting. Read/write. 00461 // {L"NetShowURL", OUTLOOK_STRING, false}, // OlNetMeetingType can be one of these OlNetMeetingType constants. 00462 // {L"NickName", OUTLOOK_STRING, false}, // Returns or sets a String representing the nickname for the contact. 00463 // {L"NoAging", OUTLOOK_BOOL, false}, // True to not age the Outlook item. 00464 // {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. 00465 // {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 00466 // {L"Ordinal", OUTLOOK_LONG, false}, // Returns or sets a Long specifying the position in the view (ordinal) for the task. 00467 // {L"OrganizationalIDNumber", OUTLOOK_STRING, false}, // Returns or sets the organizational ID number for the contact 00468 // {L"Organizer", OUTLOOK_STRING, false}, // Returns the name of the organizer of the appointment 00469 // {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. 00470 // {L"OtherAddress", OUTLOOK_STRING, false}, // Returns or sets the other address for the contact 00471 // {L"OtherAddressCity", OUTLOOK_STRING, false}, // Returns or sets the city portion of the other address for the contact 00472 // {L"OtherAddressCountry", OUTLOOK_STRING, false}, // Returns or sets the country portion of the other address for the contact 00473 // {L"OtherAddressPostalCode", OUTLOOK_STRING, false}, // Returns or sets the postal code portion of the other address for the contact 00474 // {L"OtherAddressPostOfficeBox", OUTLOOK_STRING, false}, // Returns or sets the post office box portion of the other address for the contact 00475 // {L"OtherAddressState", OUTLOOK_STRING, false}, // Returns or sets the state portion of the other address for the contact 00476 // {L"OtherAddressStreet", OUTLOOK_STRING, false}, // Returns or sets the street portion of the other address for the contact 00477 // {L"OtherFaxNumber", OUTLOOK_STRING, false}, // Returns or sets the other fax number for the contact 00478 // {L"OtherTelephoneNumber", OUTLOOK_STRING, false}, // Returns or sets the other telephone number for the contact 00479 // {L"OutlookInternalVersion", OUTLOOK_LONG, false}, // Returns the build number of the Outlook application for an Outlook item. 00480 // {L"OutlookVersion", OUTLOOK_STRING, false}, // Returns the major and minor version number of the Outlook application for an Outlook item. 00481 // {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 00482 // {L"Ownership", L"OlTaskOwnership", false}, // Returns an OlTaskOwnership specifying the ownership state of the task. 00483 // {L"PagerNumber", OUTLOOK_STRING, false}, // Returns or sets the pager number for the contact 00484 // {L"Parent", L"Object Object", false}, // Returns the parent object of the specified object 00485 // {L"PercentComplete", OUTLOOK_LONG, false}, // Returns or sets the percentage of the task completed at the current date and time 00486 // {L"PersonalHomePage", OUTLOOK_STRING, false}, // Returns or sets the URL of the personal Web page for the contact 00487 // {L"PrimaryTelephoneNumber", OUTLOOK_STRING, false}, // Returns or sets the primary telephone number for the contact 00488 // {L"Profession", OUTLOOK_STRING, false}, // Returns or sets the profession for the contact 00489 // {L"RadioTelephoneNumber", OUTLOOK_STRING, false}, // Returns or sets the radio telephone number for the contact 00490 // {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. 00491 // {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. 00492 // {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. 00493 // {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. 00494 // {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. 00495 // {L"ReceivedTime", OUTLOOK_DATE, false}, // Returns the date and time at which the mail message, meeting item, or post was received 00496 // {L"RecipientReassignmentProhibited", OUTLOOK_BOOL, false}, // True if the recipient cannot forward the mail message. 00497 // {L"Recipients", L"Recipients Collection", false}, // Returns a Recipients collection that represents all the recipients for the Outlook item. Read-only 00498 // {L"RecurrenceState", L"OlRecurrenceState constants", false}, // Returns an OlRecurrenceState constant indicating the recurrence property of the specified object. Read-only 00499 // {L"ReferredBy", OUTLOOK_STRING, false}, // Returns or sets the referral name entry for the contact 00500 // {L"ReminderMinutesBeforeStart", OUTLOOK_LONG, false}, // Returns or sets the number of minutes the reminder should occur prior to the start of the appointment 00501 // {L"ReminderOverrideDefault", OUTLOOK_BOOL, false}, // True if the reminder overrides the default reminder behavior for the appointment, mail item, or task. 00502 // {L"ReminderPlaySound", OUTLOOK_BOOL, false}, // True if the reminder should play a sound when it occurs for this appointment or task 00503 // {L"ReminderSet", OUTLOOK_BOOL, false}, // True if a reminder has been set for this appointment, mail item or task. 00504 // {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 00505 // {L"ReminderTime", OUTLOOK_DATE, false}, // Returns or sets the date and time at which the reminder should occur for this item. 00506 // {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). 00507 // {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 00508 // {L"ReplyRecipients", L"Recipient Collection", false}, // Returns a Recipients collection that represents all the reply recipient objects for the mail message. 00509 // {L"ReplyTime", OUTLOOK_DATE, false}, // Returns or sets a Date indicating the reply time for the appointment. Read/write 00510 // {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. 00511 // {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 00512 // {L"ResponseRequested", OUTLOOK_BOOL, false}, // True if the sender would like a response to the meeting request for the appointment 00513 // {L"ResponseState", L"OlTaskResponse constants", false}, // Returns or sets an OlTaskResponse constant indicating the overall status of the response to the specified task request. 00514 // {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 00515 // {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 00516 // {L"Saved", OUTLOOK_BOOL, false}, // True if the Microsoft Outlook item has not been modified since the last save. Read-only Boolean 00517 // {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. 00518 // {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 00519 // {L"SelectedMailingAddress", L"OlMailingAddress constant", false}, // Returns or sets an OlMailingAdress constant indicating the type of the mailing address for the contact 00520 // {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. 00521 // {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 00522 // {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. 00523 // {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 00524 // {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 00525 // {L"Session", L"NameSpace Object", false}, // Returns the NameSpace object for the current session 00526 // {L"Size", OUTLOOK_LONG, false}, // Returns the size (in bytes) of the Outlook item. 00527 // {L"Spouse", OUTLOOK_STRING, false}, // Returns or sets the spouse name entry for the contact 00528 // {L"StartDate", OUTLOOK_DATE, false}, // Returns or sets the starting date and time for the task 00529 // {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). 00530 // {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. 00531 // {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. 00532 // {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. 00533 // {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. 00534 // {L"Suffix", OUTLOOK_STRING, false}, // Returns or sets the name suffix (such as Jr., III, or Ph.D.) for the contact 00535 // {L"TeamTask", OUTLOOK_BOOL, false}, // True if the task is a team task 00536 // {L"TelexNumber", OUTLOOK_STRING, false}, // Returns or sets the telex number for the contact 00537 // {L"Title", OUTLOOK_STRING, false}, // Returns or sets the title for the contact 00538 // {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. 00539 // {L"TotalWork", OUTLOOK_LONG, false}, // Returns or sets the total work for the task 00540 // {L"TTYTDDTelephoneNumber", OUTLOOK_STRING, false}, // Returns or sets the TTY/TDD telephone number for the contact 00541 // {L"UnRead", OUTLOOK_BOOL, false}, // True if the Outlook item has not been opened (read). 00542 // {L"User1", OUTLOOK_STRING, false}, // Returns or sets the first Microsoft Schedule+ user for the contact. 00543 // {L"User2", OUTLOOK_STRING, false}, // Returns or sets the second Microsoft Schedule+ user for the contact 00544 // {L"User3", OUTLOOK_STRING, false}, // Returns or sets the third Microsoft Schedule+ user for the contact. 00545 // {L"User4", OUTLOOK_STRING, false}, // Returns or sets the fourth Microsoft Schedule+ user for the contact. 00546 // {L"UserCertificate", OUTLOOK_STRING, false}, // Returns or sets a String containing the user's authentication certificate for the contact 00547 // {L"UserProperties", L"UserProperties Collection", false}, // Returns the UserProperties collection that represents all the user properties for the Outlook item 00548 // {L"VotingOptions", OUTLOOK_STRING, false}, // Returns or sets a String specifying a delimited string containing the voting options for the mail message. 00549 // {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. 00550 // {L"WebPage", OUTLOOK_STRING, false}, // Returns or sets the URL of the Web page for the contact 00551 // {L"YomiCompanyName", OUTLOOK_STRING, false}, // Returns or sets a String indicating the Japanese phonetic rendering (yomigana) of the company name for the contact 00552 // {L"YomiFirstName", OUTLOOK_STRING, false}, // Returns or sets a String indicating the Japanese phonetic rendering (yomigana) of the first name for the contact 00553 // {L"YomiLastName", OUTLOOK_STRING, false}, // Returns or sets a String indicating the Japanese phonetic rendering (yomigana) of the last name for the contact 00554 // {L"RecurrenceType", OUTLOOK_LONG, false}, // Returns or set a RecurrenceType. values are orRecursDaily... 00555 // {L"Interval", OUTLOOK_LONG, false}, // Return the interval 00556 // {L"MonthOfYear", OUTLOOK_LONG, false}, // 00557 // {L"DayOfMonth", OUTLOOK_LONG, false}, // 00558 // {L"DayOfWeekMask", OUTLOOK_LONG, false}, // 00559 // {L"Instance", OUTLOOK_LONG, false}, // 00560 // {L"PatternStartDate", OUTLOOK_DATE, false}, // 00561 // {L"NoEndDate", OUTLOOK_BOOL, false}, // 00562 // {L"PatternEndDate", OUTLOOK_DATE, false}, // 00563 // {L"Color", OUTLOOK_LONG, false}, // Color of note 00564 // {L"Height", OUTLOOK_LONG, false}, // Height of note 00565 // {L"Width", OUTLOOK_LONG, false}, // Width of note 00566 // {L"Left", OUTLOOK_LONG, false}, // Width of note 00567 // {L"Top", OUTLOOK_LONG, false}, // Width of note 00568 // {L"HomeWebPage", OUTLOOK_STRING, false}, // Returns or sets the URL of the Home Web page for the contact 00569 // {L"Occurrences", OUTLOOK_LONG, false} // Return or sets the number of the occurrences of the recurrence. 00570 // 00571 //}; 00572 00573 00576 #endif