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_SIF_FIELDS 00037 #define INCL_SIF_FIELDS 00038 00043 #include "base/fscapi.h" 00044 #include "spdm/constants.h" 00045 00046 00054 static WCHAR* appointmentFields[] = { 00055 00056 {L"Start" }, // Returns or sets the starting date and time for the appointment or journal entry. Use only in calendar 00057 {L"End" }, // Returns or sets the end date and time of an appointment or journal entry. Use only on calendar 00058 {L"AllDayEvent" }, // 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 - MUST be set AFTER "Start" and "End" fields. 00059 {L"BillingInformation" }, // Returns or sets the billing information associated with the Outlook item. This is a free-form text field 00060 {L"Body" }, // Returns or sets the clear-text body of the Outlook item. 00061 {L"BusyStatus" }, // 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). 00062 {L"Categories" }, // Returns or sets the categories assigned to the Outlook item. 00063 {L"Companies" }, // Returns or sets the names of the companies associated with the Outlook item. This is a free-form text field 00064 {L"Importance" }, // 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. 00065 {L"IsRecurring" }, // 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 00066 {L"Location" }, // 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 00067 {L"MeetingStatus" }, // OlRemoteStatus can be one of these OlRemoteStatus constants. 00068 {L"Mileage" }, // 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. 00069 {L"NoAging" }, // need? // True to not age the Outlook item. 00070 // {L"OptionalAttendees" }, // need? // 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 00071 {L"ReminderMinutesBeforeStart" }, // Returns or sets the number of minutes the reminder should occur prior to the start of the appointment 00072 {L"ReminderSet" }, // True if a reminder has been set for this appointment, mail item or task. 00073 {L"ReminderSoundFile" }, // Returns or sets the path and filename of the sound file to play when the reminder occurs for the appointment or task. This property is only valid if the ReminderOverrideDefault and ReminderPlaySound properties are set to True 00074 {L"ReplyTime" }, // Returns or sets a Date indicating the reply time for the appointment. Read/write 00075 {L"Sensitivity" }, // 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 00076 {L"Subject" }, // 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. 00077 // {L"UnRead" }, // need? // True if the Outlook item has not been opened (read). // 00078 {NULL} 00079 00080 }; 00081 00082 00086 static WCHAR* recurrenceFields[] = { 00087 00088 {L"RecurrenceType" }, // Returns or set a RecurrenceType. values are orRecursDaily... 00089 {L"Interval" }, // Is the interval of the recurrence. If RecurrenceType is olRecursDaily, event occurs every <Interval> day. If olRecursWeekly, event occurs every <inteval> week.. 00090 {L"MonthOfYear" }, // Returns or sets the month of year. 00091 {L"DayOfMonth" }, // Returns or sets the single day of the month from 1 to 31. 00092 {L"DayOfWeekMask" }, // The combination days of the week constants (i. e. event recurring on Monday and Wednesday. The DayOfWeekMask should be olMonday + olWednesday) 00093 {L"Instance" }, // Returns or sets the ordinal number of the day, week, month. 00094 {L"PatternStartDate" }, // Returns or sets the start date of the recurrence. 00095 {L"NoEndDate" }, // True if there is no end date. True is 1. 00096 {L"PatternEndDate" }, // Returns or sets the end date of the recurrence. 00097 {L"Occurrences" }, // Return or sets the number of the occurrences of the recurrence. 00098 {NULL} 00099 00100 }; 00101 00102 00107 static WCHAR* exAppointmentFields[] = { 00108 00109 {L"Subject" }, // The modified Subject 00110 {L"Body" }, // The modified Body 00111 {L"Location" }, // The modified Location 00112 {L"Start" }, // The modified Start date of appointment (UTC) 00113 {L"End" }, // The modified End date of appointment (UTC) 00114 {L"AllDayEvent" }, // The modified AllDayEvent flag (0 - 1) 00115 {L"BusyStatus" }, // The modified BusyStatus (olFree 0 - olTentative 1 - olBusy 2 - olOutOfOffice 3) 00116 {L"ReminderSet" }, // The modified ReminderSet (only Outlook) 00117 {L"ReminderMinutesBeforeStart" }, // The modified ReminderMinutesBeforeStart (only Outlook) 00118 {L"Importance" }, // The modified Importance (only Outlook) 00119 {NULL} 00120 00121 }; 00122 00123 00124 00125 00131 static WCHAR* contactFields[] = { 00132 00133 {L"Anniversary" }, // Returns or sets the anniversary date for the contact 00134 {L"AssistantName" }, // 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. 00135 {L"AssistantTelephoneNumber" }, // Returns or sets the telephone number of the person who is the assistant for the contact 00136 {L"BillingInformation" }, // Returns or sets the billing information associated with the Outlook item. This is a free-form text field 00137 {L"Birthday" }, // Returns or sets the birthday for the contact.Corresponds to the Birthday: field on the Details page of a ContactItem. 00138 {L"Body" }, // Returns or sets the clear-text body of the Outlook item. 00139 {L"Business2TelephoneNumber" }, // Returns or sets the second business telephone number for the contact. 00140 {L"BusinessAddressCity" }, // Returns or sets the city name portion of the business address for the contact 00141 {L"BusinessAddressCountry" }, // Returns or sets the country code portion of the business address for the contact 00142 {L"BusinessAddressPostalCode" }, // Returns or sets the postal code (zip code) portion of the business address for the contact 00143 {L"BusinessAddressPostOfficeBox" }, // Returns or sets the post office box number portion of the business address for the contact 00144 {L"BusinessAddressState" }, // Returns or sets the state code portion of the business address for the contact 00145 {L"BusinessAddressStreet" }, // Returns or sets the street address portion of the business address for the contact 00146 {L"BusinessAddressExtended" }, // Returns or sets the city portion of the business extended for the contact 00147 {L"BusinessFaxNumber" }, // Returns or sets the business fax number for the contact 00148 {L"BusinessTelephoneNumber" }, // Returns or sets the first business telephone number for the contact 00149 // {L"BusinessWebPage" }, // Duplicated: inside Outlook it's the same of "WebPage" -> removed since 6.5.2 00150 {L"CallbackTelephoneNumber" }, // Returns or sets the callback telephone number for the contact 00151 {L"CarTelephoneNumber" }, // Returns or sets the car telephone number for the contact 00152 {L"Categories" }, // Returns or sets the categories assigned to the Outlook item. 00153 {L"Children" }, // Returns or sets the names of the children of the contact 00154 {L"Companies" }, // Returns or sets the names of the companies associated with the Outlook item. This is a free-form text field 00155 {L"CompanyMainTelephoneNumber" }, // Returns or sets the company main telephone number for the contact 00156 {L"CompanyName" }, // Returns or sets the company name for the contact 00157 // {L"ComputerNetworkName" }, // Returns or sets the name of the computer network for the contact 00158 {L"Department" }, // Returns or sets the department name for the contact 00159 {L"Email1Address" }, // Returns or sets a String representing the e-mail address of the first e-mail entry for the contact. 00160 {L"Email1AddressType" }, // 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. 00161 {L"Email2Address" }, // Returns or sets the e-mail address of the second e-mail entry for the contact 00162 {L"Email2AddressType" }, // 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. 00163 {L"Email3Address" }, // Returns or sets the e-mail address of the third e-mail entry for the contact 00164 {L"Email3AddressType" }, // 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. 00165 {L"FirstName" }, // Returns or sets the first name for the contact. 00166 {L"Gender" }, // Returns or sets the gender of the contact. Can be one of the following OlGender constants: olFemale(1), olMale(2), or olUnspecified(0). 00167 {L"Hobby" }, // Returns or sets the hobby for the contact 00168 {L"Home2TelephoneNumber" }, // Returns or sets the second home telephone number for the contact 00169 {L"HomeAddressCity" }, // Returns or sets the city portion of the home address for the contact 00170 {L"HomeAddressExtended" }, // Returns or sets the city portion of the home extended for the contact 00171 {L"HomeAddressCountry" }, // Returns or sets the country portion of the home address for the contact 00172 {L"HomeAddressPostalCode" }, // Returns or sets the postal code portion of the home address for the contact 00173 {L"HomeAddressPostOfficeBox" }, // Returns or sets the post office box number portion of the home address for the contact 00174 {L"HomeAddressState" }, // Returns or sets the state portion of the home address for the contact 00175 {L"HomeAddressStreet" }, // Returns or sets the street portion of the home address for the contact 00176 {L"HomeFaxNumber" }, // Returns or sets the home fax number for the contact 00177 {L"HomeTelephoneNumber" }, // Returns or sets the first home telephone number for the contact 00178 {L"HomeWebPage" }, // Returns or sets the URL of the Home Web page for the contact 00179 {L"IMAddress" }, // Returns or sets a String that represents a contact's Microsoft Instant Messenger address. 00180 {L"Importance" }, // 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. 00181 {L"Initials" }, // Returns or sets the initials for the contact 00182 {L"JobTitle" }, // Returns or sets the job title for the contact 00183 {L"Language" }, // Returns or sets the language for the contact 00184 {L"LastName" }, // Returns or sets the last name for the contact 00185 //{L"MailingAddress" }, // Returns or sets the full, unparsed selected mailing address for the contact 00186 {L"ManagerName" }, // Returns or sets the manager name for the contact 00187 {L"MiddleName" }, // 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. 00188 {L"Mileage" }, // 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. 00189 {L"MobileTelephoneNumber" }, // Returns or sets a String representing the mobile telephone number for the contact. 00190 {L"NickName" }, // Returns or sets a String representing the nickname for the contact. 00191 {L"OfficeLocation" }, // 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. 00192 {L"OrganizationalIDNumber" }, // Returns or sets the organizational ID number for the contact 00193 {L"OtherAddressCity" }, // Returns or sets the city portion of the other address for the contact 00194 {L"OtherAddressCountry" }, // Returns or sets the country portion of the other address for the contact 00195 {L"OtherAddressPostalCode" }, // Returns or sets the postal code portion of the other address for the contact 00196 {L"OtherAddressPostOfficeBox" }, // Returns or sets the post office box portion of the other address for the contact 00197 {L"OtherAddressState" }, // Returns or sets the state portion of the other address for the contact 00198 {L"OtherAddressExtended" }, // Returns or sets the city portion of the other extended for the contact 00199 {L"OtherAddressStreet" }, // Returns or sets the street portion of the other address for the contact 00200 {L"OtherFaxNumber" }, // Returns or sets the other fax number for the contact 00201 {L"OtherTelephoneNumber" }, // Returns or sets the other telephone number for the contact 00202 {L"PagerNumber" }, // Returns or sets the pager number for the contact 00203 {L"Photo" }, // The contact's picture (b64) 00204 {L"PrimaryTelephoneNumber" }, // Returns or sets the primary telephone number for the contact 00205 {L"Profession" }, // Returns or sets the profession for the contact 00206 {L"RadioTelephoneNumber" }, // Returns or sets the radio telephone number for the contact 00207 {L"Sensitivity" }, // 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 00208 {L"Spouse" }, // Returns or sets the spouse name entry for the contact 00209 {L"Subject" }, // 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. 00210 {L"Suffix" }, // Returns or sets the name suffix (such as Jr., III, or Ph.D.) for the contact 00211 {L"TelexNumber" }, // Returns or sets the telex number for the contact 00212 {L"Title" }, // Returns or sets the title for the contact 00213 {L"WebPage" }, // Returns or sets the URL of the Web page for the contact 00214 {L"YomiCompanyName" }, // Returns or sets a String indicating the Japanese phonetic rendering (yomigana) of the company name for the contact 00215 {L"YomiFirstName" }, // Returns or sets a String indicating the Japanese phonetic rendering (yomigana) of the first name for the contact 00216 {L"YomiLastName" }, // Returns or sets a String indicating the Japanese phonetic rendering (yomigana) of the last name for the contact 00217 {L"FileAs" }, // Returns or sets the default keyword string assigned to the contact when it is filed 00218 {NULL} 00219 00220 }; 00221 00222 00223 00224 00228 //static WCHAR* mailFields[] = { 00229 // 00230 // {L"BCC" }, // 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 00231 // {L"BillingInformation" }, // Returns or sets the billing information associated with the Outlook item. This is a free-form text field 00232 // {L"Body" }, // Returns or sets the clear-text body of the Outlook item. 00233 // {L"Categories" }, // Returns or sets the categories assigned to the Outlook item. 00234 // {L"CC" }, // 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 00235 // {L"Companies" }, // Returns or sets the names of the companies associated with the Outlook item. This is a free-form text field 00236 // {L"DeferredDeliveryTime" }, // 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 00237 // {L"ExpiryTime" }, // Returns or sets the date and time at which the item becomes invalid and can be deleted 00238 // {L"FlagDueBy" }, // 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 00239 // {L"FlagRequest" }, // 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 00240 // {L"FlagStatus" }, // 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). 00241 // {L"HTMLBody" }, // 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. 00242 // {L"Importance" }, // 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. 00243 // {L"Mileage" }, // 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. 00244 // {L"NoAging" }, // True to not age the Outlook item. 00245 // {L"ReadReceiptRequested" }, // True if a read receipt has been requested by the sender. This property corresponds to the MAPI property PR_READ_RECEIPT_REQUESTED. 00246 // {L"ReminderSet" }, // True if a reminder has been set for this appointment, mail item or task. 00247 // {L"ReminderTime" }, // Returns or sets the date and time at which the reminder should occur for this item. 00248 // {L"Sensitivity" }, // 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 00249 // {L"SentOnBehalfOfName" }, // Returns the display name for the intended sender of the mail message. This property corresponds to the MAPI property PR_SENT_REPRESENTING_NAME 00250 // {L"Subject" }, // 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. 00251 // {L"To" }, // 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. 00252 // {L"UnRead" }, // True if the Outlook item has not been opened (read). 00253 // {L"VotingOptions" }, // Returns or sets a String specifying a delimited string containing the voting options for the mail message. 00254 // {L"VotingResponse" }, // 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. 00255 // {NULL} 00256 //}; 00257 00258 00259 00260 00269 static WCHAR* taskFields[] = { 00270 00271 {L"StartDate" }, // Returns or sets the starting date and time for the task 00272 {L"ActualWork" }, // Returns or sets the actual effort (in minutes) spent on the task 00273 {L"BillingInformation" }, // Returns or sets the billing information associated with the Outlook item. This is a free-form text field 00274 {L"Body" }, // Returns or sets the clear-text body of the Outlook item. 00275 {L"Categories" }, // Returns or sets the categories assigned to the Outlook item. 00276 {L"Companies" }, // Returns or sets the names of the companies associated with the Outlook item. This is a free-form text field 00277 {L"Complete" }, // True if the task is completed 00278 {L"DateCompleted" }, // Returns or sets the completion date of the task 00279 {L"DueDate" }, // Returns or sets a Date indicating the due date for the task. 00280 {L"Importance" }, // 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. 00281 {L"IsRecurring" }, // 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 00282 {L"Mileage" }, // 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. 00283 {L"PercentComplete" }, // Returns or sets the percentage of the task completed at the current date and time 00284 {L"ReminderSet" }, // True if a reminder has been set for this appointment, mail item or task. 00285 {L"ReminderSoundFile" }, // Returns or sets the path and filename of the sound file to play when the reminder occurs for the appointment or task. This property is only valid if the ReminderOverrideDefault and ReminderPlaySound properties are set to True 00286 {L"ReminderTime" }, // Returns or sets the date and time at which the reminder should occur for this item. 00287 {L"Sensitivity" }, // 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 00288 {L"Status" }, // 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). 00289 {L"Subject" }, // 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. 00290 {L"TeamTask" }, // True if the task is a team task 00291 {L"TotalWork" }, // Returns or sets the total work for the task 00292 {NULL} 00293 00294 }; 00295 00296 00297 00298 00302 static WCHAR* noteFields[] = { 00303 00304 {L"Body" }, // Returns or sets the clear-text body of the Outlook item. 00305 {L"Categories" }, // Returns or sets the categories assigned to the Outlook item. 00306 //{L"CreationTime" }, // need? // Returns the creation time for the Outlook item. This property corresponds to the MAPI property PR_CREATION_TIME 00307 //{L"Date" }, // not used // Returns the time that the Outlook item was last modified. This property corresponds to the MAPI property LastModificationTime 00308 {L"Subject" }, // 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. 00309 {L"Color" }, // Color of note 00310 {L"Height" }, // Height of note 00311 {L"Width" }, // Width of note 00312 {L"Left" }, // Left position of note 00313 {L"Top" }, // Top position of note 00314 {NULL} 00315 }; 00316 00317 00318 00319 00320 00322 // ALL PROPERTIES - (supported and not, useful to add future fields...) 00324 // 00325 //static WCHAR* allFields[] = { 00326 // 00327 // {L"Duration" }, // olFullItem The entire item has been downloaded. 00328 // {L"AllDayEvent" }, // 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. 00329 // {L"Start" }, // Returns or sets the starting date and time for the appointment or journal entry. Use only in calendar 00330 // {L"End" }, // Returns or sets the end date and time of an appointment or journal entry. Use only on calendar 00331 // {L"Account" }, // Returns or sets the account for the contact 00332 // {L"Actions" }, // Returns an Actions collection that represents all the available actions for the Outlook item. 00333 // {L"ActualWork" }, // Returns or sets the actual effort (in minutes) spent on the task 00334 // {L"AlternateRecipientAllowed" }, // True if the mail message can be forwarded. 00335 // {L"Anniversary" }, // Returns or sets the anniversary date for the contact 00336 // {L"Application" }, // Returns an Application object that represents the parent application (Microsoft Outlook) for an object 00337 // {L"AssistantName" }, // 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. 00338 // {L"AssistantTelephoneNumber" }, // Returns or sets the telephone number of the person who is the assistant for the contact 00339 // {L"Attachments" }, // Returns an Attachments object that represents all the attachments for the item. 00340 // {L"AutoForwarded" }, // True if the mail message was automatically forwarded. 00341 // {L"BCC" }, // 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 00342 // {L"BillingInformation" }, // Returns or sets the billing information associated with the Outlook item. This is a free-form text field 00343 // {L"Birthday" }, // Returns or sets the birthday for the contact.Corresponds to the Birthday: field on the Details page of a ContactItem. 00344 // {L"Body" }, // Returns or sets the clear-text body of the Outlook item. 00345 // {L"BodyFormat" }, // 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. 00346 // {L"Business2TelephoneNumber" }, // Returns or sets the second business telephone number for the contact. 00347 // {L"BusinessAddress" }, // Returns or sets the whole, unparsed business address for the contact. 00348 // {L"BusinessAddressCity" }, // Returns or sets the city name portion of the business address for the contact 00349 // {L"BusinessAddressCountry" }, // Returns or sets the country code portion of the business address for the contact 00350 // {L"BusinessAddressPostalCode" }, // Returns or sets the postal code (zip code) portion of the business address for the contact 00351 // {L"BusinessAddressPostOfficeBox" }, // Returns or sets the post office box number portion of the business address for the contact 00352 // {L"BusinessAddressState" }, // Returns or sets the state code portion of the business address for the contact 00353 // {L"BusinessAddressStreet" }, // Returns or sets the street address portion of the business address for the contact 00354 // {L"BusinessFaxNumber" }, // Returns or sets the business fax number for the contact 00355 // {L"BusinessWebPage" }, // Returns or sets the URL of the business Web page for the contact 00356 // {L"BusinessTelephoneNumber" }, // Returns or sets the first business telephone number for the contact 00357 // {L"BusyStatus" }, // 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). 00358 // {L"CallbackTelephoneNumber" }, // Returns or sets the callback telephone number for the contact 00359 // {L"CardData" }, // Returns or sets a String representing the text of the card data for the task. 00360 // {L"CarTelephoneNumber" }, // Returns or sets the car telephone number for the contact 00361 // {L"Categories" }, // Returns or sets the categories assigned to the Outlook item. 00362 // {L"CC" }, // 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 00363 // {L"Children" }, // Returns or sets the names of the children of the contact 00364 // {L"Class" }, // Returns an OlObjectClass constant indicating the object's class. Read-only 00365 // {L"Companies" }, // Returns or sets the names of the companies associated with the Outlook item. This is a free-form text field 00366 // {L"CompanyAndFullName" }, // Returns a String representing the concatenated company name and full name for the contact 00367 // {L"CompanyLastFirstNoSpace" }, // 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. 00368 // {L"CompanyLastFirstSpaceOnly" }, // 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. 00369 // {L"CompanyMainTelephoneNumber" }, // Returns or sets the company main telephone number for the contact 00370 // {L"CompanyName" }, // Returns or sets the company name for the contact 00371 // {L"Complete" }, // True if the task is completed 00372 // {L"ComputerNetworkName" }, // Returns or sets the name of the computer network for the contact 00373 // {L"ConferenceServerAllowExternal" }, // Reserved for future use 00374 // {L"ConferenceServerPassword" }, // Reserved for future use. 00375 // {L"ContactNames" }, // 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. 00376 // {L"ConversationIndex" }, // Returns a String representing the index of the conversation thread of the item. Read-only. 00377 // {L"ConversationTopic" }, // Returns the topic of the conversation thread of the item. 00378 // {L"CreationTime" }, // Returns the creation time for the Outlook item. This property corresponds to the MAPI property PR_CREATION_TIME 00379 // {L"CustomerID" }, // Returns or sets the customer ID for the contact 00380 // {L"DateCompleted" }, // Returns or sets the completion date of the task 00381 // {L"DeferredDeliveryTime" }, // 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 00382 // {L"DelegationState" }, // Returns the delegation state of the task. Can be one of the following OlTaskDelegationState constants: olTaskDelegationAccepted(2), olTaskDelegationDeclined(3), olTaskDelegationUnknown(1), or olTaskNotDelegated(0) 00383 // {L"Delegator" }, // Returns a String representing the display name of the delegator for the task. 00384 // {L"DeleteAfterSubmit" }, // True if a copy of the mail message is not saved upon being sent. False if a copy is saved. 00385 // {L"Department" }, // Returns or sets the department name for the contact 00386 // {L"DownloadState" }, // Returns or sets an OlDownloadState constant indicating the download state of the item. Read-only OlDownloadState. 00387 // {L"DueDate" }, // Returns or sets a Date indicating the due date for the task. 00388 // {L"Email1Address" }, // Returns or sets a String representing the e-mail address of the first e-mail entry for the contact. 00389 // {L"Email1AddressType" }, // 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. 00390 // {L"Email1DisplayName" }, // 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. 00391 // {L"Email1EntryID" }, // Returns a String representing the entry ID of the first e-mail address for the contact. 00392 // {L"Email2Address" }, // Returns or sets the e-mail address of the second e-mail entry for the contact 00393 // {L"Email2AddressType" }, // 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. 00394 // {L"Email2DisplayName" }, // 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. 00395 // {L"Email2EntryID" }, // Returns a String representing the entry ID of the second e-mail entry for the contact. 00396 // {L"Email3Address" }, // Returns or sets the e-mail address of the third e-mail entry for the contact 00397 // {L"Email3AddressType" }, // 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. 00398 // {L"Email3DisplayName" }, // 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. 00399 // {L"Email3EntryID" }, // Returns a String representing the entry ID of the third e-mail entry for the contact. 00400 // {L"EntryID" }, // 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. 00401 // {L"ExpiryTime" }, // Returns or sets the date and time at which the item becomes invalid and can be deleted 00402 // {L"FileAs" }, // Returns or sets the default keyword string assigned to the contact when it is filed 00403 // {L"FirstName" }, // Returns or sets the first name for the contact. 00404 // {L"FlagDueBy" }, // 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 00405 // {L"FlagRequest" }, // 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 00406 // {L"FlagStatus" }, // 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). 00407 // {L"FormDescription" }, // Returns the FormDescription object that represents the form description for the specified Microsoft Outlook item. 00408 // {L"FTPSite" }, // Returns the FTP site entry for the contact 00409 // {L"FullName" }, // Returns or sets the whole, unparsed full name for the contact 00410 // {L"FullNameAndCompany" }, // Returns a String representing the full name and company of the contact by concatenating the values of the FullName and CompanyName properties. 00411 // {L"Gender" }, // Returns or sets the gender of the contact. Can be one of the following OlGender constants: olFemale(1), olMale(2), or olUnspecified(0). 00412 // {L"GetInspector" }, // 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 00413 // {L"GovernmentIDNumber" }, // Returns or sets the government ID number for the contact 00414 // {L"Hobby" }, // Returns or sets the hobby for the contact 00415 // {L"Home2TelephoneNumber" }, // Returns or sets the second home telephone number for the contact 00416 // {L"HomeAddress" }, // Returns or sets the full, unparsed text of the home address for the contact 00417 // {L"HomeAddressCity" }, // Returns or sets the city portion of the home address for the contact 00418 // {L"HomeAddressCountry" }, // Returns or sets the country portion of the home address for the contact 00419 // {L"HomeAddressPostalCode" }, // Returns or sets the postal code portion of the home address for the contact 00420 // {L"HomeAddressPostOfficeBox" }, // Returns or sets the post office box number portion of the home address for the contact 00421 // {L"HomeAddressState" }, // Returns or sets the state portion of the home address for the contact 00422 // {L"HomeAddressStreet" }, // Returns or sets the street portion of the home address for the contact 00423 // {L"HomeFaxNumber" }, // Returns or sets the home fax number for the contact 00424 // {L"HomeTelephoneNumber" }, // Returns or sets the first home telephone number for the contact 00425 // {L"HTMLBody" }, // 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. 00426 // {L"IMAddress" }, // Returns or sets a String that represents a contact's Microsoft Instant Messenger address. 00427 // {L"Importance" }, // 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. 00428 // {L"Initials" }, // Returns or sets the initials for the contact 00429 // {L"InternetCodepage" }, // 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 00430 // {L"InternetFreeBusyAddress" }, // 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. 00431 // {L"IsConflict" }, // 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. 00432 // {L"ISDNNumber" }, // Returns or sets the ISDN number for the contact 00433 // {L"IsOnlineMeeting" }, // True if this is an online meeting. Read/write Boolean 00434 // {L"IsRecurring" }, // 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 00435 // {L"ItemProperties" }, // Returns an ItemProperties collection that represents all properties associated with an item. 00436 // {L"JobTitle" }, // Returns or sets the job title for the contact 00437 // {L"Journal" }, // True if the transaction of the contact will be journalized. The default value is False 00438 // {L"Language" }, // Returns or sets the language for the contact 00439 // {L"LastFirstAndSuffix" }, // 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. 00440 // {L"LastFirstNoSpace" }, // 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. 00441 // {L"LastFirstNoSpaceAndSuffix" }, // Returns the last name, first name, and suffix of the user without a space. 00442 // {L"LastFirstNoSpaceCompany" }, // 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. 00443 // {L"LastFirstSpaceOnly" }, // 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. 00444 // {L"LastFirstSpaceOnlyCompany" }, // 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. 00445 // {L"Date" }, // Returns the time that the Outlook item was last modified. This property corresponds to the MAPI property PR_LAST_MODIFICATION_TIME (Ex LastModificationTime) 00446 // {L"LastName" }, // Returns or sets the last name for the contact 00447 // {L"LastNameAndFirstName" }, // Returns a String representing the concatenated last name and first name for the contact. 00448 // {L"Links" }, // Returns a collection of Link objects that represent the contacts to which the item is linked 00449 // {L"Location" }, // 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 00450 // {L"MailingAddress" }, // Returns or sets the full, unparsed selected mailing address for the contact 00451 // {L"MailingAddressCity" }, // Returns or sets a String representing the city name portion of the selected mailing address of the contact. 00452 // {L"MailingAddressCountry" }, // Returns or sets a String representing the country/region code portion of the selected mailing address of the contact. 00453 // {L"MailingAddressPostalCode" }, // Returns or sets a String representing the postal code (zip code) portion of the selected mailing address of the contact. 00454 // {L"MailingAddressPostOfficeBox" }, // Returns or sets a String representing the post office box number portion of the selected mailing address of the contact. 00455 // {L"MailingAddressState" }, // Returns or sets a String representing the state code portion for the selected mailing address of the contact 00456 // {L"MailingAddressStreet" }, // Returns or sets a String representing the street address portion of the selected mailing address of the contact 00457 // {L"ManagerName" }, // Returns or sets the manager name for the contact 00458 // {L"MarkForDownload" }, // 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. 00459 // {L"MeetingStatus" }, // Returns or sets an OlMeetingStatus constant specifying the meeting status of the appointment. 00460 // {L"MessageClass" }, // 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. 00461 // {L"MiddleName" }, // 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. 00462 // {L"Mileage" }, // 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. 00463 // {L"MobileTelephoneNumber" }, // Returns or sets a String representing the mobile telephone number for the contact. 00464 // {L"NetMeetingAlias" }, // Returns or sets a String indicating the user's Microsoft NetMeeting ID, or alias. 00465 // {L"NetMeetingAutoStart" }, // True if this online meeting starts automatically. Read/write Boolean 00466 // {L"NetMeetingDocPathName" }, // Returns or sets a String representing the full path to the Microsoft Office document specified for a Microsoft NetMeeting online meeting. Read/write 00467 // {L"NetMeetingOrganizerAlias" }, // Returns or sets a String representing the alias of the meeting organizer, if this is an online meeting. Read/write. 00468 // {L"NetMeetingServer" }, // Returns or sets a String specifying the name of the Microsoft NetMeeting server being used for an online meeting. Read/write 00469 // {L"NetMeetingType" }, // Sets or returns an OlNetMeetingType constant specifying the type of Microsoft NetMeeting. Read/write. 00470 // {L"NetShowURL" }, // OlNetMeetingType can be one of these OlNetMeetingType constants. 00471 // {L"NickName" }, // Returns or sets a String representing the nickname for the contact. 00472 // {L"NoAging" }, // True to not age the Outlook item. 00473 // {L"OfficeLocation" }, // 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. 00474 // {L"OptionalAttendees" }, // 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 00475 // {L"Ordinal" }, // Returns or sets a Long specifying the position in the view (ordinal) for the task. 00476 // {L"OrganizationalIDNumber" }, // Returns or sets the organizational ID number for the contact 00477 // {L"Organizer" }, // Returns the name of the organizer of the appointment 00478 // {L"OriginatorDeliveryReportRequested" }, // 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. 00479 // {L"OtherAddress" }, // Returns or sets the other address for the contact 00480 // {L"OtherAddressCity" }, // Returns or sets the city portion of the other address for the contact 00481 // {L"OtherAddressCountry" }, // Returns or sets the country portion of the other address for the contact 00482 // {L"OtherAddressPostalCode" }, // Returns or sets the postal code portion of the other address for the contact 00483 // {L"OtherAddressPostOfficeBox" }, // Returns or sets the post office box portion of the other address for the contact 00484 // {L"OtherAddressState" }, // Returns or sets the state portion of the other address for the contact 00485 // {L"OtherAddressStreet" }, // Returns or sets the street portion of the other address for the contact 00486 // {L"OtherFaxNumber" }, // Returns or sets the other fax number for the contact 00487 // {L"OtherTelephoneNumber" }, // Returns or sets the other telephone number for the contact 00488 // {L"OutlookInternalVersion" }, // Returns the build number of the Outlook application for an Outlook item. 00489 // {L"OutlookVersion" }, // Returns the major and minor version number of the Outlook application for an Outlook item. 00490 // {L"Owner" }, // 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 00491 // {L"Ownership" }, // Returns an OlTaskOwnership specifying the ownership state of the task. 00492 // {L"PagerNumber" }, // Returns or sets the pager number for the contact 00493 // {L"Parent" }, // Returns the parent object of the specified object 00494 // {L"PercentComplete" }, // Returns or sets the percentage of the task completed at the current date and time 00495 // {L"PersonalHomePage" }, // Returns or sets the URL of the personal Web page for the contact 00496 // {L"PrimaryTelephoneNumber" }, // Returns or sets the primary telephone number for the contact 00497 // {L"Profession" }, // Returns or sets the profession for the contact 00498 // {L"RadioTelephoneNumber" }, // Returns or sets the radio telephone number for the contact 00499 // {L"ReadReceiptRequested" }, // True if a read receipt has been requested by the sender. This property corresponds to the MAPI property PR_READ_RECEIPT_REQUESTED. 00500 // {L"ReceivedByEntryID" }, // 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. 00501 // {L"ReceivedByName" }, // 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. 00502 // {L"ReceivedOnBehalfOfEntryID" }, // 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. 00503 // {L"ReceivedOnBehalfOfName" }, // 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. 00504 // {L"ReceivedTime" }, // Returns the date and time at which the mail message, meeting item, or post was received 00505 // {L"RecipientReassignmentProhibited" }, // True if the recipient cannot forward the mail message. 00506 // {L"Recipients" }, // Returns a Recipients collection that represents all the recipients for the Outlook item. Read-only 00507 // {L"RecurrenceState" }, // Returns an OlRecurrenceState constant indicating the recurrence property of the specified object. Read-only 00508 // {L"ReferredBy" }, // Returns or sets the referral name entry for the contact 00509 // {L"ReminderMinutesBeforeStart" }, // Returns or sets the number of minutes the reminder should occur prior to the start of the appointment 00510 // {L"ReminderOverrideDefault" }, // True if the reminder overrides the default reminder behavior for the appointment, mail item, or task. 00511 // {L"ReminderPlaySound" }, // True if the reminder should play a sound when it occurs for this appointment or task 00512 // {L"ReminderSet" }, // True if a reminder has been set for this appointment, mail item or task. 00513 // {L"ReminderSoundFile" }, // 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 00514 // {L"ReminderTime" }, // Returns or sets the date and time at which the reminder should occur for this item. 00515 // {L"RemoteStatus" }, // 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). 00516 // {L"ReplyRecipientNames" }, // 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 00517 // {L"ReplyRecipients" }, // Returns a Recipients collection that represents all the reply recipient objects for the mail message. 00518 // {L"ReplyTime" }, // Returns or sets a Date indicating the reply time for the appointment. Read/write 00519 // {L"RequiredAttendees" }, // 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. 00520 // {L"Resources" }, // 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 00521 // {L"ResponseRequested" }, // True if the sender would like a response to the meeting request for the appointment 00522 // {L"ResponseState" }, // Returns or sets an OlTaskResponse constant indicating the overall status of the response to the specified task request. 00523 // {L"ResponseStatus" }, // Returns an OlResponseStatus constant indicating the overall status of the meeting for the current user for the appointment. Read-only 00524 // {L"Role" }, // Returns or sets the free-form text string associating the owner of a task with a role for the task 00525 // {L"Saved" }, // True if the Microsoft Outlook item has not been modified since the last save. Read-only Boolean 00526 // {L"SaveSentMessageFolder" }, // Returns a MAPIFolder object that represents the folder in which a copy of the mail message will be saved upon being sent. 00527 // {L"SchedulePlusPriority" }, // 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 00528 // {L"SelectedMailingAddress" }, // Returns or sets an OlMailingAdress constant indicating the type of the mailing address for the contact 00529 // {L"SenderName" }, // 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. 00530 // {L"Sensitivity" }, // 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 00531 // {L"Sent" }, // 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. 00532 // {L"SentOn" }, // 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 00533 // {L"SentOnBehalfOfName" }, // Returns the display name for the intended sender of the mail message. This property corresponds to the MAPI property PR_SENT_REPRESENTING_NAME 00534 // {L"Session" }, // Returns the NameSpace object for the current session 00535 // {L"Size" }, // Returns the size (in bytes) of the Outlook item. 00536 // {L"Spouse" }, // Returns or sets the spouse name entry for the contact 00537 // {L"StartDate" }, // Returns or sets the starting date and time for the task 00538 // {L"Status" }, // 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). 00539 // {L"StatusOnCompletionRecipients" }, // 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. 00540 // {L"StatusUpdateRecipients" }, // 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. 00541 // {L"Subject" }, // 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. 00542 // {L"Submitted" }, // 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. 00543 // {L"Suffix" }, // Returns or sets the name suffix (such as Jr., III, or Ph.D.) for the contact 00544 // {L"TeamTask" }, // True if the task is a team task 00545 // {L"TelexNumber" }, // Returns or sets the telex number for the contact 00546 // {L"Title" }, // Returns or sets the title for the contact 00547 // {L"To" }, // 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. 00548 // {L"TotalWork" }, // Returns or sets the total work for the task 00549 // {L"TTYTDDTelephoneNumber" }, // Returns or sets the TTY/TDD telephone number for the contact 00550 // {L"UnRead" }, // True if the Outlook item has not been opened (read). 00551 // {L"User1" }, // Returns or sets the first Microsoft Schedule+ user for the contact. 00552 // {L"User2" }, // Returns or sets the second Microsoft Schedule+ user for the contact 00553 // {L"User3" }, // Returns or sets the third Microsoft Schedule+ user for the contact. 00554 // {L"User4" }, // Returns or sets the fourth Microsoft Schedule+ user for the contact. 00555 // {L"UserCertificate" }, // Returns or sets a String containing the user's authentication certificate for the contact 00556 // {L"UserProperties" }, // Returns the UserProperties collection that represents all the user properties for the Outlook item 00557 // {L"VotingOptions" }, // Returns or sets a String specifying a delimited string containing the voting options for the mail message. 00558 // {L"VotingResponse" }, // 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. 00559 // {L"WebPage" }, // Returns or sets the URL of the Web page for the contact 00560 // {L"YomiCompanyName" }, // Returns or sets a String indicating the Japanese phonetic rendering (yomigana) of the company name for the contact 00561 // {L"YomiFirstName" }, // Returns or sets a String indicating the Japanese phonetic rendering (yomigana) of the first name for the contact 00562 // {L"YomiLastName" }, // Returns or sets a String indicating the Japanese phonetic rendering (yomigana) of the last name for the contact 00563 // {L"RecurrenceType" }, // Returns or set a RecurrenceType. values are orRecursDaily... 00564 // {L"Interval" }, // Is the interval of the recurrence. If RecurrenceType is olRecursDaily, event occurs every <Interval> day. If olRecursWeekly, event occurs every <inteval> week.. 00565 // {L"MonthOfYear" }, // Returns or sets the month of year. 00566 // {L"DayOfMonth" }, // Returns or sets the single day of the month from 1 to 31. 00567 // {L"DayOfWeekMask" }, // The combination days of the week constants (i. e. event recurring on Monday and Wednesday. The DayOfWeekMask should be olMonday + olWednesday) 00568 // {L"Instance" }, // Returns or sets the ordinal number of the day, week, month. 00569 // {L"PatternStartDate" }, // Returns or sets the start date of the recurrence. 00570 // {L"NoEndDate" }, // True if there is no end date. True is 1. 00571 // {L"PatternEndDate" }, // Returns or sets the end date of the recurrence. 00572 // {L"Occurrences" }, // Return or sets the number of the occurrences of the recurrence. 00573 // {L"Color" }, // Color of note 00574 // {L"Height" }, // Height of note 00575 // {L"Width" }, // Width of note 00576 // {L"Left" }, // Width of note 00577 // {L"Top" }, // Width of note 00578 // {L"HomeWebPage" }, // Returns or sets the URL of the Home Web page for the contact 00579 // {NULL} 00580 //}; 00581 00582 00585 #endif