📄 microsoft.windowsmobile.pocketoutlook.xml
字号:
The time-slot is unavailable for any and all scheduling requests. This flag is used to indicate that a Contact will be unavailable for an extended period of time, and will not be accepting Meeting requests. The Appointment will conflict with another one that is scheduled for any time-slot that is spanned by this Appointment.
</summary>
</member>
<member name="T:Microsoft.WindowsMobile.PocketOutlook.MeetingStatus">
<summary>
Specifies whether an Appointment is a Meeting, and if so, specifies its status. The default value is NotMeeting (just an Appointment).
</summary>
</member>
<member name="F:Microsoft.WindowsMobile.PocketOutlook.MeetingStatus.NotMeeting">
<summary>
The Appointment is not a Meeting. It was created and saved without sending it to one or more Recipients.
</summary>
<value>0</value>
</member>
<member name="F:Microsoft.WindowsMobile.PocketOutlook.MeetingStatus.Meeting">
<summary>
The Appointment is a Meeting. It was created and sent to one or more Recipients.
</summary>
<value>1</value>
</member>
<member name="F:Microsoft.WindowsMobile.PocketOutlook.MeetingStatus.MeetingAccepted">
<summary>
The Appointment is a Meeting. The user has accepted the meeting request.
</summary>
<value>3</value>
</member>
<member name="F:Microsoft.WindowsMobile.PocketOutlook.MeetingStatus.MeetingCanceled">
<summary>
The Appointment is a Meeting, but it was cancelled by the meeting organizer.
</summary>
<value>7</value>
</member>
<member name="T:Microsoft.WindowsMobile.PocketOutlook.Appointment">
<summary>
Defines an Appointment item in the Appointment collection. Appointments are blocks of time that appear in the Outlook calendar. They can have beginning and ending times, can repeat, can have a location; and become Meetings when scheduled (sent) to recipients (Contacts).
</summary>
<remarks>
An <b>Appointment</b> is a specialized <b>PimItem</b>. Use the <b>AppoitmentCollection</b> to add and retrieve Appointments to and from the Appointment (Calendar) folder.
</remarks>
</member>
<member name="T:Microsoft.WindowsMobile.PocketOutlook.PimItem">
<summary>
Defines information about each PIM item in the Outlook session, such as the ItemID property that uniquely identifies PimItems.
</summary>
<remarks>
The Appointment, Task, and Contact classes are based on this class.
</remarks>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItem.#ctor(Microsoft.WindowsMobile.PocketOutlook.ItemId,Microsoft.WindowsMobile.PocketOutlook.FolderType)">
<summary>
Creates a new PimItem using the ID of an existing PIM item, along with its folder type.
</summary>
<param name="itemId">Identifier of the item to be retrieved</param>
<param name="itemExpectedType">The type of item that should be constructed.</param>
<exception cref="T:Microsoft.WindowsMobile.PocketOutlook.PocketOutlookException">Thrown when there is an error getting the PimItem type.</exception>
<exception cref="T:System.ArgumentException">Thrown when the ItemId is not of the expected type.</exception>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItem.Finalize">
<summary>
The PimItem class destructor.
</summary>
<remarks>
Disposes an PimItem object by calling this.Dispose(false). This method overrides System.Object.Finalize.
<para>Application code should not call this method; an object's Finalize method is automatically invoked during garbage collection, unless finalization by the garbage collector has been disabled by a call to the GC.SuppressFinalize method.</para>
<para>For more information, see <see>cpconFinalizeMethodscDestructors</see>, <see>cpconCleaningUpUnmanagedResources</see>, and <see>cpconOverridingFinalizeMethod</see>.</para>
</remarks>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItem.ShowDialog">
<summary>
Opens the PIM item鈥檚 standard summary card.
</summary>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItem.Update">
<summary>
Updates the PIM item store by saving changes made to a PIM item.
</summary>
<exception cref="T:Microsoft.WindowsMobile.PocketOutlook.PocketOutlookException">The item has not been added to a folder.</exception>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItem.Delete(System.Int32)">
<summary>
Occurs when the PIM item was deleted.
</summary>
<param name="index">index of the item that was deleted.</param>
<remarks>
Does not actually delete the item though.
</remarks>
</member>
<member name="P:Microsoft.WindowsMobile.PocketOutlook.PimItem.Properties">
<summary>
Gets the PimPropertySet. This object is used for creating custom PIM item properties.
</summary>
<example>
You can use Properties to access information on the PimItem or its folder.
In this example, a few properties in a contact are set, and then some properties
are read.
<code>
using (OutlookSession mySession = new OutlookSession())
{
// Create a contact in the Business Category.
Contact myContact = new Contact();
myContact.Properties[ContactProperty.FirstName] = "Eric";
myContact.Properties[ContactProperty.LastName] = "Parkinson";
myContact.Properties[ContactProperty.Categories] = "Business";
mySession.Contacts.Items.Add(myContact);
// Get the contact's first name.
string contactFirstName = myContact.Properties[ContactProperty.FirstName].ToString();
// Get the contact's categories, in this case "Business".
string contactCategory = myContact.Properties[ContactProperty.Categories].ToString();
// Get the contacts folder categories.
// This will include all the categories in the contacts folder.
string contactFolderCategories = myContact.Properties[ContactProperty.FolderCategories].ToString();
}
</code>
</example>
</member>
<member name="P:Microsoft.WindowsMobile.PocketOutlook.PimItem.ItemId">
<summary>
Gets the PIM item鈥檚 ID.
</summary>
</member>
<member name="T:Microsoft.WindowsMobile.PocketOutlook.PimItem.PimItemState">
<summary>
Enumeration that will be used if we want to place restrictions on the operations that can be made according to the way a message was intercepted.
</summary>
</member>
<member name="F:Microsoft.WindowsMobile.PocketOutlook.PimItem.PimItemState.NotYetAdded">
<summary>
Not yet added to the collection. (Created like new Contact())
</summary>
</member>
<member name="F:Microsoft.WindowsMobile.PocketOutlook.PimItem.PimItemState.Added">
<summary>
The item has already been added to the collection or was in the collection to start with. (i.e. contactCollection[3]);
</summary>
</member>
<member name="F:Microsoft.WindowsMobile.PocketOutlook.PimItem.PimItemState.Deleted">
<summary>
The Item has been deleted and is not usable anymore.
</summary>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.Appointment.#ctor">
<summary>
Initializes a new instance of the Appointment class.
</summary>
<remarks>A new Appointment is created in a specified Folder. You must later add the Appointment to a collection using AppointmentCollection.Add().
</remarks>
<example>
OutlookSession s;
using (s = new OutlookSession())
{
Appointment a = new Appointment();
// Set properties on "a" here.
s.Appointments.Items.Add(a);
a.Update();
}
</example>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.Appointment.#ctor(Microsoft.WindowsMobile.PocketOutlook.ItemId)">
<summary>
Initializes a new instance of the Appointment class that references the item ID of an existing Appointment item.
<remarks>
An exception is thrown if the item ID does not belong to an Appointment.
</remarks>
</summary>
<param name="itemId">The ItemID of an existing Appointment item.</param>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.Appointment.Update">
<summary>
Updates the Appointment by saving the changes made to it.
</summary>
<exception cref="T:Microsoft.WindowsMobile.PocketOutlook.PocketOutlookException">The appointment has not been added to a folder.</exception>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.Appointment.Delete">
<summary>
Deletes an Appointment item by removing it from the Appointment collection.
</summary>
<remarks>
<b>Delete</b> throws a <b>Win32Exception</b> if the delete operation is not successful.
For example, this can happen when deleting a <b>Appointment</b> item that has not been
added to the <see cref="T:Microsoft.WindowsMobile.PocketOutlook.AppointmentCollection"/>.
</remarks>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.Appointment.Send">
<summary>
Sends (e-mails) a Meeting request to one or more Recipients.
</summary>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.Appointment.Cancel">
<summary>
Cancels a Meeting. Removes the Meeting from the calendar.
<remarks>
Cancel is available only if MeetingStatus is set to Meeting.
</remarks>
</summary>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.Appointment.Copy">
<summary>
Creates a copy of the current Appointment in the Appointment collection.
</summary>
<exception cref="T:Microsoft.WindowsMobile.PocketOutlook.PocketOutlookException">Thrown when the appointment has not been added to the collection before calling the Copy method.</exception>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.Appointment.ToString">
<summary>
Gets the subject of an Appointment.
</summary>
<returns>The subject of the Appointment.</returns>
</member>
<member name="E:Microsoft.WindowsMobile.PocketOutlook.Appointment.SubjectChanged">
<summary>
Occurs when an Appointment's Subject changes.
</summary>
</member>
<member name="E:Microsoft.WindowsMobile.PocketOutlook.Appointment.LocationChanged">
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -