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