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 //{L"BusyStatus" }, // To convert FREE, BUSY, TENTATIVE, OOF string into 0, 1, 2, 3 digit 00180 {NULL} 00181 00182 }; 00183 00184 00186 static WCHAR* complexContactProps[] = { 00187 00188 {L"Anniversary" }, 00189 {L"Birthday" }, 00190 {L"NoAging" }, 00191 {L"UnRead" }, 00192 {L"FirstName" }, // For first letter capitalization... 00193 {L"LastName" }, // For first letter capitalization... 00194 {L"Categories" }, // To convert separator: ";" into "," 00195 {L"LastModificationTime" }, // Used by SyncSource 00196 {L"HomeAddressExtended" }, 00197 {L"BusinessAddressExtended" }, 00198 {L"OtherAddressExtended" }, 00199 {L"HomeAddressStreet" }, 00200 {L"BusinessAddressStreet" }, 00201 {L"OtherAddressStreet" }, 00202 {L"Photo" }, // Contact's picture (b64) 00203 {NULL} 00204 00205 }; 00206 00207 00209 static WCHAR* complexMailProps[] = { 00210 00211 {L"DeferredDeliveryTime" }, 00212 {L"ExpiryTime" }, 00213 {L"FlagDueBy" }, 00214 {L"FlagStatus" }, 00215 {L"Importance" }, 00216 {L"NoAging" }, 00217 {L"ReadReceiptRequested" }, 00218 {L"ReminderSet" }, 00219 {L"ReminderTime" }, 00220 {L"Sensitivity" }, 00221 {L"UnRead" }, 00222 {L"LastModificationTime" }, // Used by SyncSource 00223 {NULL} 00224 00225 }; 00226 00227 00228 00230 static WCHAR* complexTaskProps[] = { 00231 00232 {L"Complete" }, 00233 {L"DateCompleted" }, 00234 {L"DueDate" }, 00235 {L"Importance" }, // Just to add safe checks in input 00236 {L"IsRecurring" }, 00237 {L"ReminderSet" }, 00238 {L"ReminderTime" }, 00239 {L"StartDate" }, 00240 {L"TeamTask" }, 00241 {L"Categories" }, // To convert separator: ";" into "," 00242 {L"LastModificationTime" }, // Used by SyncSource 00243 {L"ReminderSoundFile" }, // Because we need to check the 'ReminderPlaySound' 00244 {NULL} 00245 00246 }; 00247 00248 00249 00251 static WCHAR* complexNoteProps[] = { 00252 00253 {L"Subject" }, 00254 {L"Categories" }, // To convert separator: ";" into "," 00255 {L"Color" }, // It's deprecated in Outlook2007 (Categories is used) 00256 {L"LastModificationTime" }, // Used by SyncSource 00257 {L"Height" }, // Outlook does not accept empty values 00258 {L"Width" }, // Outlook does not accept empty values 00259 {L"Left" }, // Outlook does not accept empty values 00260 {L"Top" }, // Outlook does not accept empty values 00261 {NULL} 00262 00263 }; 00264 00265 00266 00268 static WCHAR* recurrenceProps[] = { 00269 00270 {L"RecurrenceType" }, 00271 {L"Interval" }, 00272 {L"MonthOfYear" }, 00273 {L"DayOfMonth" }, 00274 {L"DayOfWeekMask" }, 00275 {L"Instance" }, 00276 {L"PatternStartDate" }, 00277 {L"NoEndDate" }, 00278 {L"PatternEndDate" }, 00279 {L"Occurrences" }, 00280 {NULL} 00281 00282 }; 00283 00284 00285 00286 00287 00288 00289 // ------------------------------------------------------------------------------------------------- 00290 // ----------------------------------- not used... ------------------------------------------------- 00291 // ------------------------------------------------------------------------------------------------- 00292 // 00293 // Correspondance of OlDaysOfWeek (Mask) <-> SYSTEMTIME.wDayOfWeek 00294 // **************************************************************** 00295 //typedef struct OutlookDaysOfWeek { 00296 // std::wstring name; 00297 // WORD dayNumber; 00298 // OlDaysOfWeek dayMask; 00299 //} DaysOfWeek; 00300 // 00301 // 00302 //static DaysOfWeek daysOfWeek[7] = { 00305 // {L"Sunday", 0, olSunday }, 00306 // {L"Monday", 1, olMonday }, 00307 // {L"Tuesday", 2, olTuesday }, 00308 // {L"Wednsday", 3, olWednesday}, 00309 // {L"Thursday", 4, olThursday }, 00310 // {L"Friday", 5, olFriday }, 00311 // {L"Saturday", 6, olSaturday } 00312 //}; 00313 // 00314 // 00315 // 00316 // Outlook Items Properties: 00317 // Here listed all properties for all item types. 00318 // ************************************************************** 00319 // 00320 //#define ALL_PROPS_COUNT 252 00321 // 00322 //#define OUTLOOK_STRING L"String" 00323 //#define OUTLOOK_LONG L"Long" 00324 //#define OUTLOOK_DATE L"Date" 00325 //#define OUTLOOK_TIME L"Time" // <- *** use? *** 00326 //#define OUTLOOK_BOOL L"Boolean" 00327 //#define OUTLOOK_OBJECT L"Object" 00328 // 00329 // 00330 //typedef struct OutlookProps { 00331 // int index; 00332 // std::wstring type; 00333 // bool isSafe; 00334 //} Props; 00335 // 00336 //typedef struct OutlookPropertyTypes { 00337 // std::wstring name; 00338 // std::wstring type; 00339 // bool isSafe; 00340 //} PropertyTypes; 00341 // 00342 //static PropertyTypes allItemsProps[ALL_PROPS_COUNT] = { 00345 // {L"Duration", OUTLOOK_LONG, false}, // olFullItem The entire item has been downloaded. 00346 // {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. 00347 // {L"Start", OUTLOOK_DATE, false}, // Returns or sets the starting date and time for the appointment or journal entry. Use only in calendar 00348 // {L"End", OUTLOOK_DATE, false}, // Returns or sets the end date and time of an appointment or journal entry. Use only on calendar 00349 // {L"Account", OUTLOOK_STRING, false}, // Returns or sets the account for the contact 00350 // {L"Actions", L"Actions Collection", false}, // Returns an Actions collection that represents all the available actions for the Outlook item. 00351 // {L"ActualWork", OUTLOOK_LONG, false}, // Returns or sets the actual effort (in minutes) spent on the task 00352 // {L"AlternateRecipientAllowed", OUTLOOK_BOOL, false}, // True if the mail message can be forwarded. 00353 // {L"Anniversary", OUTLOOK_DATE, false}, // Returns or sets the anniversary date for the contact 00354 // {L"Application", L"Application Object", false}, // Returns an Application object that represents the parent application (Microsoft Outlook) for an object 00355 // {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. 00356 // {L"AssistantTelephoneNumber", OUTLOOK_STRING, false}, // Returns or sets the telephone number of the person who is the assistant for the contact 00357 // {L"Attachments", L"Attachments Collection", false}, // Returns an Attachments object that represents all the attachments for the item. 00358 // {L"AutoForwarded", OUTLOOK_BOOL, false}, // True if the mail message was automatically forwarded. 00359 // {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 00360 // {L"BillingInformation", OUTLOOK_STRING, false}, // Returns or sets the billing information associated with the Outlook item. This is a free-form text field 00361 // {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. 00362 // {L"Body", OUTLOOK_STRING, true }, // Returns or sets the clear-text body of the Outlook item. 00363 // {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. 00364 // {L"Business2TelephoneNumber", OUTLOOK_STRING, false}, // Returns or sets the second business telephone number for the contact. 00365 // {L"BusinessAddress", OUTLOOK_STRING, false}, // Returns or sets the whole, unparsed business address for the contact. 00366 // {L"BusinessAddressCity", OUTLOOK_STRING, false}, // Returns or sets the city name portion of the business address for the contact 00367 // {L"BusinessAddressCountry", OUTLOOK_STRING, false}, // Returns or sets the country code portion of the business address for the contact 00368 // {L"BusinessAddressPostalCode", OUTLOOK_STRING, false}, // Returns or sets the postal code (zip code) portion of the business address for the contact 00369 // {L"BusinessAddressPostOfficeBox", OUTLOOK_STRING, false}, // Returns or sets the post office box number portion of the business address for the contact 00370 // {L"BusinessAddressState", OUTLOOK_STRING, false}, // Returns or sets the state code portion of the business address for the contact 00371 // {L"BusinessAddressStreet", OUTLOOK_STRING, false}, // Returns or sets the street address portion of the business address for the contact 00372 // {L"BusinessFaxNumber", OUTLOOK_STRING, false}, // Returns or sets the business fax number for the contact 00373 // {L"BusinessWebPage", OUTLOOK_STRING, false}, // Returns or sets the URL of the business Web page for the contact 00374 // {L"BusinessTelephoneNumber", OUTLOOK_STRING, false}, // Returns or sets the first business telephone number for the contact 00375 // {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). 00376 // {L"CallbackTelephoneNumber", OUTLOOK_STRING, false}, // Returns or sets the callback telephone number for the contact 00377 // {L"CardData", OUTLOOK_STRING, false}, // Returns or sets a String representing the text of the card data for the task. 00378 // {L"CarTelephoneNumber", OUTLOOK_STRING, false}, // Returns or sets the car telephone number for the contact 00379 // {L"Categories", OUTLOOK_STRING, false}, // Returns or sets the categories assigned to the Outlook item. 00380 // {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 00381 // {L"Children", OUTLOOK_STRING, false}, // Returns or sets the names of the children of the contact 00382 // {L"Class", L"OlObjectClass constant", false}, // Returns an OlObjectClass constant indicating the object's class. Read-only 00383 // {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 00384 // {L"CompanyAndFullName", OUTLOOK_STRING, false}, // Returns a String representing the concatenated company name and full name for the contact 00385 // {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. 00386 // {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. 00387 // {L"CompanyMainTelephoneNumber", OUTLOOK_STRING, false}, // Returns or sets the company main telephone number for the contact 00388 // {L"CompanyName", OUTLOOK_STRING, false}, // Returns or sets the company name for the contact 00389 // {L"Complete", OUTLOOK_BOOL, false}, // True if the task is completed 00390 // {L"ComputerNetworkName", OUTLOOK_STRING, false}, // Returns or sets the name of the computer network for the contact 00391 // {L"ConferenceServerAllowExternal", L"--", false}, // Reserved for future use 00392 // {L"ConferenceServerPassword", L"--", false}, // Reserved for future use. 00393 // {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. 00394 // {L"ConversationIndex", OUTLOOK_STRING, false}, // Returns a String representing the index of the conversation thread of the item. Read-only. 00395 // {L"ConversationTopic", OUTLOOK_STRING, false}, // Returns the topic of the conversation thread of the item. 00396 // {L"CreationTime", OUTLOOK_DATE, false}, // Returns the creation time for the Outlook item. This property corresponds to the MAPI property PR_CREATION_TIME 00397 // {L"CustomerID", OUTLOOK_STRING, false}, // Returns or sets the customer ID for the contact 00398 // {L"DateCompleted", OUTLOOK_DATE, false}, // Returns or sets the completion date of the task 00399 // {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 00400 // {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) 00401 // {L"Delegator", OUTLOOK_STRING, false}, // Returns a String representing the display name of the delegator for the task. 00402 // {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. 00403 // {L"Department", OUTLOOK_STRING, false}, // Returns or sets the department name for the contact 00404 // {L"DownloadState", L"OlDownloadState constant", false}, // Returns or sets an OlDownloadState constant indicating the download state of the item. Read-only OlDownloadState. 00405 // {L"DueDate", OUTLOOK_DATE, false}, // Returns or sets a Date indicating the due date for the task. 00406 // {L"Email1Address", OUTLOOK_STRING, true }, // Returns or sets a String representing the e-mail address of the first e-mail entry for the contact. 00407 // {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. 00408 // {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. 00409 // {L"Email1EntryID", OUTLOOK_STRING, false}, // Returns a String representing the entry ID of the first e-mail address for the contact. 00410 // {L"Email2Address", OUTLOOK_STRING, true }, // Returns or sets the e-mail address of the second e-mail entry for the contact 00411 // {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. 00412 // {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. 00413 // {L"Email2EntryID", OUTLOOK_STRING, false}, // Returns a String representing the entry ID of the second e-mail entry for the contact. 00414 // {L"Email3Address", OUTLOOK_STRING, true }, // Returns or sets the e-mail address of the third e-mail entry for the contact 00415 // {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. 00416 // {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. 00417 // {L"Email3EntryID", OUTLOOK_STRING, false}, // Returns a String representing the entry ID of the third e-mail entry for the contact. 00418 // {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. 00419 // {L"ExpiryTime", OUTLOOK_DATE, false}, // Returns or sets the date and time at which the item becomes invalid and can be deleted 00420 // {L"FileAs", OUTLOOK_STRING, false}, // Returns or sets the default keyword string assigned to the contact when it is filed 00421 // {L"FirstName", OUTLOOK_STRING, false}, // Returns or sets the first name for the contact. 00422 // {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 00423 // {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 00424 // {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). 00425 // {L"FormDescription", L"FormDescriprion Object", false}, // Returns the FormDescription object that represents the form description for the specified Microsoft Outlook item. 00426 // {L"FTPSite", OUTLOOK_STRING, false}, // Returns the FTP site entry for the contact 00427 // {L"FullName", OUTLOOK_STRING, false}, // Returns or sets the whole, unparsed full name for the contact 00428 // {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. 00429 // {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). 00430 // {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 00431 // {L"GovernmentIDNumber", OUTLOOK_STRING, false}, // Returns or sets the government ID number for the contact 00432 // {L"Hobby", OUTLOOK_STRING, false}, // Returns or sets the hobby for the contact 00433 // {L"Home2TelephoneNumber", OUTLOOK_STRING, false}, // Returns or sets the second home telephone number for the contact 00434 // {L"HomeAddress", OUTLOOK_STRING, false}, // Returns or sets the full, unparsed text of the home address for the contact 00435 // {L"HomeAddressCity", OUTLOOK_STRING, false}, // Returns or sets the city portion of the home address for the contact 00436 // {L"HomeAddressCountry", OUTLOOK_STRING, false}, // Returns or sets the country portion of the home address for the contact 00437 // {L"HomeAddressPostalCode", OUTLOOK_STRING, false}, // Returns or sets the postal code portion of the home address for the contact 00438 // {L"HomeAddressPostOfficeBox", OUTLOOK_STRING, false}, // Returns or sets the post office box number portion of the home address for the contact 00439 // {L"HomeAddressState", OUTLOOK_STRING, false}, // Returns or sets the state portion of the home address for the contact 00440 // {L"HomeAddressStreet", OUTLOOK_STRING, false}, // Returns or sets the street portion of the home address for the contact 00441 // {L"HomeFaxNumber", OUTLOOK_STRING, false}, // Returns or sets the home fax number for the contact 00442 // {L"HomeTelephoneNumber", OUTLOOK_STRING, false}, // Returns or sets the first home telephone number for the contact 00443 // {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. 00444 // {L"IMAddress", OUTLOOK_STRING, false}, // Returns or sets a String that represents a contact's Microsoft Instant Messenger address. 00445 // {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. 00446 // {L"Initials", OUTLOOK_STRING, false}, // Returns or sets the initials for the contact 00447 // {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 00448 // {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. 00449 // {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. 00450 // {L"ISDNNumber", OUTLOOK_STRING, false}, // Returns or sets the ISDN number for the contact 00451 // {L"IsOnlineMeeting", OUTLOOK_BOOL, false}, // True if this is an online meeting. Read/write Boolean 00452 // {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 00453 // {L"ItemProperties", L"ItemProperties Collection", false}, // Returns an ItemProperties collection that represents all properties associated with an item. 00454 // {L"JobTitle", OUTLOOK_STRING, false}, // Returns or sets the job title for the contact 00455 // {L"Journal", OUTLOOK_BOOL, false}, // True if the transaction of the contact will be journalized. The default value is False 00456 // {L"Language", OUTLOOK_STRING, false}, // Returns or sets the language for the contact 00457 // {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. 00458 // {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. 00459 // {L"LastFirstNoSpaceAndSuffix", OUTLOOK_STRING, false}, // Returns the last name, first name, and suffix of the user without a space. 00460 // {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. 00461 // {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. 00462 // {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. 00463 // {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) 00464 // {L"LastName", OUTLOOK_STRING, false}, // Returns or sets the last name for the contact 00465 // {L"LastNameAndFirstName", OUTLOOK_STRING, false}, // Returns a String representing the concatenated last name and first name for the contact. 00466 // {L"Links", L"Links Object", false}, // Returns a collection of Link objects that represent the contacts to which the item is linked 00467 // {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 00468 // {L"MailingAddress", OUTLOOK_STRING, false}, // Returns or sets the full, unparsed selected mailing address for the contact 00469 // {L"MailingAddressCity", OUTLOOK_STRING, false}, // Returns or sets a String representing the city name portion of the selected mailing address of the contact. 00470 // {L"MailingAddressCountry", OUTLOOK_STRING, false}, // Returns or sets a String representing the country/region code portion of the selected mailing address of the contact. 00471 // {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. 00472 // {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. 00473 // {L"MailingAddressState", OUTLOOK_STRING, false}, // Returns or sets a String representing the state code portion for the selected mailing address of the contact 00474 // {L"MailingAddressStreet", OUTLOOK_STRING, false}, // Returns or sets a String representing the street address portion of the selected mailing address of the contact 00475 // {L"ManagerName", OUTLOOK_STRING, false}, // Returns or sets the manager name for the contact 00476 // {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. 00477 // {L"MeetingStatus", L"OlMeetingStatus", false}, // OlRemoteStatus can be one of these OlRemoteStatus constants. 00478 // {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. 00479 // {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. 00480 // {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. 00481 // {L"MobileTelephoneNumber", OUTLOOK_STRING, false}, // Returns or sets a String representing the mobile telephone number for the contact. 00482 // {L"NetMeetingAlias", OUTLOOK_STRING, false}, // Returns or sets a String indicating the user's Microsoft NetMeeting ID, or alias. 00483 // {L"NetMeetingAutoStart", OUTLOOK_BOOL, false}, // True if this online meeting starts automatically. Read/write Boolean 00484 // {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 00485 // {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. 00486 // {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 00487 // {L"NetMeetingType", L"OlNetMeetingType constant", false}, // Sets or returns an OlNetMeetingType constant specifying the type of Microsoft NetMeeting. Read/write. 00488 // {L"NetShowURL", OUTLOOK_STRING, false}, // OlNetMeetingType can be one of these OlNetMeetingType constants. 00489 // {L"NickName", OUTLOOK_STRING, false}, // Returns or sets a String representing the nickname for the contact. 00490 // {L"NoAging", OUTLOOK_BOOL, false}, // True to not age the Outlook item. 00491 // {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. 00492 // {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 00493 // {L"Ordinal", OUTLOOK_LONG, false}, // Returns or sets a Long specifying the position in the view (ordinal) for the task. 00494 // {L"OrganizationalIDNumber", OUTLOOK_STRING, false}, // Returns or sets the organizational ID number for the contact 00495 // {L"Organizer", OUTLOOK_STRING, false}, // Returns the name of the organizer of the appointment 00496 // {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. 00497 // {L"OtherAddress", OUTLOOK_STRING, false}, // Returns or sets the other address for the contact 00498 // {L"OtherAddressCity", OUTLOOK_STRING, false}, // Returns or sets the city portion of the other address for the contact 00499 // {L"OtherAddressCountry", OUTLOOK_STRING, false}, // Returns or sets the country portion of the other address for the contact 00500 // {L"OtherAddressPostalCode", OUTLOOK_STRING, false}, // Returns or sets the postal code portion of the other address for the contact 00501 // {L"OtherAddressPostOfficeBox", OUTLOOK_STRING, false}, // Returns or sets the post office box portion of the other address for the contact 00502 // {L"OtherAddressState", OUTLOOK_STRING, false}, // Returns or sets the state portion of the other address for the contact 00503 // {L"OtherAddressStreet", OUTLOOK_STRING, false}, // Returns or sets the street portion of the other address for the contact 00504 // {L"OtherFaxNumber", OUTLOOK_STRING, false}, // Returns or sets the other fax number for the contact 00505 // {L"OtherTelephoneNumber", OUTLOOK_STRING, false}, // Returns or sets the other telephone number for the contact 00506 // {L"OutlookInternalVersion", OUTLOOK_LONG, false}, // Returns the build number of the Outlook application for an Outlook item. 00507 // {L"OutlookVersion", OUTLOOK_STRING, false}, // Returns the major and minor version number of the Outlook application for an Outlook item. 00508 // {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 00509 // {L"Ownership", L"OlTaskOwnership", false}, // Returns an OlTaskOwnership specifying the ownership state of the task. 00510 // {L"PagerNumber", OUTLOOK_STRING, false}, // Returns or sets the pager number for the contact 00511 // {L"Parent", L"Object Object", false}, // Returns the parent object of the specified object 00512 // {L"PercentComplete", OUTLOOK_LONG, false}, // Returns or sets the percentage of the task completed at the current date and time 00513 // {L"PersonalHomePage", OUTLOOK_STRING, false}, // Returns or sets the URL of the personal Web page for the contact 00514 // {L"PrimaryTelephoneNumber", OUTLOOK_STRING, false}, // Returns or sets the primary telephone number for the contact 00515 // {L"Profession", OUTLOOK_STRING, false}, // Returns or sets the profession for the contact 00516 // {L"RadioTelephoneNumber", OUTLOOK_STRING, false}, // Returns or sets the radio telephone number for the contact 00517 // {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. 00518 // {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. 00519 // {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. 00520 // {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. 00521 // {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. 00522 // {L"ReceivedTime", OUTLOOK_DATE, false}, // Returns the date and time at which the mail message, meeting item, or post was received 00523 // {L"RecipientReassignmentProhibited", OUTLOOK_BOOL, false}, // True if the recipient cannot forward the mail message. 00524 // {L"Recipients", L"Recipients Collection", false}, // Returns a Recipients collection that represents all the recipients for the Outlook item. Read-only 00525 // {L"RecurrenceState", L"OlRecurrenceState constants", false}, // Returns an OlRecurrenceState constant indicating the recurrence property of the specified object. Read-only 00526 // {L"ReferredBy", OUTLOOK_STRING, false}, // Returns or sets the referral name entry for the contact 00527 // {L"ReminderMinutesBeforeStart", OUTLOOK_LONG, false}, // Returns or sets the number of minutes the reminder should occur prior to the start of the appointment 00528 // {L"ReminderOverrideDefault", OUTLOOK_BOOL, false}, // True if the reminder overrides the default reminder behavior for the appointment, mail item, or task. 00529 // {L"ReminderPlaySound", OUTLOOK_BOOL, false}, // True if the reminder should play a sound when it occurs for this appointment or task 00530 // {L"ReminderSet", OUTLOOK_BOOL, false}, // True if a reminder has been set for this appointment, mail item or task. 00531 // {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 00532 // {L"ReminderTime", OUTLOOK_DATE, false}, // Returns or sets the date and time at which the reminder should occur for this item. 00533 // {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). 00534 // {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 00535 // {L"ReplyRecipients", L"Recipient Collection", false}, // Returns a Recipients collection that represents all the reply recipient objects for the mail message. 00536 // {L"ReplyTime", OUTLOOK_DATE, false}, // Returns or sets a Date indicating the reply time for the appointment. Read/write 00537 // {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. 00538 // {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 00539 // {L"ResponseRequested", OUTLOOK_BOOL, false}, // True if the sender would like a response to the meeting request for the appointment 00540 // {L"ResponseState", L"OlTaskResponse constants", false}, // Returns or sets an OlTaskResponse constant indicating the overall status of the response to the specified task request. 00541 // {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 00542 // {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 00543 // {L"Saved", OUTLOOK_BOOL, false}, // True if the Microsoft Outlook item has not been modified since the last save. Read-only Boolean 00544 // {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. 00545 // {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 00546 // {L"SelectedMailingAddress", L"OlMailingAddress constant", false}, // Returns or sets an OlMailingAdress constant indicating the type of the mailing address for the contact 00547 // {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. 00548 // {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 00549 // {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. 00550 // {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 00551 // {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 00552 // {L"Session", L"NameSpace Object", false}, // Returns the NameSpace object for the current session 00553 // {L"Size", OUTLOOK_LONG, false}, // Returns the size (in bytes) of the Outlook item. 00554 // {L"Spouse", OUTLOOK_STRING, false}, // Returns or sets the spouse name entry for the contact 00555 // {L"StartDate", OUTLOOK_DATE, false}, // Returns or sets the starting date and time for the task 00556 // {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). 00557 // {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. 00558 // {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. 00559 // {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. 00560 // {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. 00561 // {L"Suffix", OUTLOOK_STRING, false}, // Returns or sets the name suffix (such as Jr., III, or Ph.D.) for the contact 00562 // {L"TeamTask", OUTLOOK_BOOL, false}, // True if the task is a team task 00563 // {L"TelexNumber", OUTLOOK_STRING, false}, // Returns or sets the telex number for the contact 00564 // {L"Title", OUTLOOK_STRING, false}, // Returns or sets the title for the contact 00565 // {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. 00566 // {L"TotalWork", OUTLOOK_LONG, false}, // Returns or sets the total work for the task 00567 // {L"TTYTDDTelephoneNumber", OUTLOOK_STRING, false}, // Returns or sets the TTY/TDD telephone number for the contact 00568 // {L"UnRead", OUTLOOK_BOOL, false}, // True if the Outlook item has not been opened (read). 00569 // {L"User1", OUTLOOK_STRING, false}, // Returns or sets the first Microsoft Schedule+ user for the contact. 00570 // {L"User2", OUTLOOK_STRING, false}, // Returns or sets the second Microsoft Schedule+ user for the contact 00571 // {L"User3", OUTLOOK_STRING, false}, // Returns or sets the third Microsoft Schedule+ user for the contact. 00572 // {L"User4", OUTLOOK_STRING, false}, // Returns or sets the fourth Microsoft Schedule+ user for the contact. 00573 // {L"UserCertificate", OUTLOOK_STRING, false}, // Returns or sets a String containing the user's authentication certificate for the contact 00574 // {L"UserProperties", L"UserProperties Collection", false}, // Returns the UserProperties collection that represents all the user properties for the Outlook item 00575 // {L"VotingOptions", OUTLOOK_STRING, false}, // Returns or sets a String specifying a delimited string containing the voting options for the mail message. 00576 // {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. 00577 // {L"WebPage", OUTLOOK_STRING, false}, // Returns or sets the URL of the Web page for the contact 00578 // {L"YomiCompanyName", OUTLOOK_STRING, false}, // Returns or sets a String indicating the Japanese phonetic rendering (yomigana) of the company name for the contact 00579 // {L"YomiFirstName", OUTLOOK_STRING, false}, // Returns or sets a String indicating the Japanese phonetic rendering (yomigana) of the first name for the contact 00580 // {L"YomiLastName", OUTLOOK_STRING, false}, // Returns or sets a String indicating the Japanese phonetic rendering (yomigana) of the last name for the contact 00581 // {L"RecurrenceType", OUTLOOK_LONG, false}, // Returns or set a RecurrenceType. values are orRecursDaily... 00582 // {L"Interval", OUTLOOK_LONG, false}, // Return the interval 00583 // {L"MonthOfYear", OUTLOOK_LONG, false}, // 00584 // {L"DayOfMonth", OUTLOOK_LONG, false}, // 00585 // {L"DayOfWeekMask", OUTLOOK_LONG, false}, // 00586 // {L"Instance", OUTLOOK_LONG, false}, // 00587 // {L"PatternStartDate", OUTLOOK_DATE, false}, // 00588 // {L"NoEndDate", OUTLOOK_BOOL, false}, // 00589 // {L"PatternEndDate", OUTLOOK_DATE, false}, // 00590 // {L"Color", OUTLOOK_LONG, false}, // Color of note 00591 // {L"Height", OUTLOOK_LONG, false}, // Height of note 00592 // {L"Width", OUTLOOK_LONG, false}, // Width of note 00593 // {L"Left", OUTLOOK_LONG, false}, // Width of note 00594 // {L"Top", OUTLOOK_LONG, false}, // Width of note 00595 // {L"HomeWebPage", OUTLOOK_STRING, false}, // Returns or sets the URL of the Home Web page for the contact 00596 // {L"Occurrences", OUTLOOK_LONG, false} // Return or sets the number of the occurrences of the recurrence. 00597 // 00598 //}; 00599 00600 00603 #endif