?? microsoft.windowsmobile.pocketoutlook.xml
字號:
</summary>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.Restrict(System.String)">
<summary>
Creates a new PIM item collection that contains only PIM items that match a set of filter criteria. This provides a filtered view of a collection of PIM items.
</summary>
<param name="restriction">
A string that defines which items to find.
This string must contain a Boolean expression that evaluates to either TRUE or FALSE for any item.
- Enclose property names between brackets.
- You can combine expressions with AND and OR.
- Comparison operators are the following "<, <=, >, >=, =, <>"
</param>
<remarks>
A restriction match requires that the item include a value for the property. For example, if you do not set the e-mail address for a contact, the contact will not be found using the restriction string [Email1Address]<>me@microsoft.com, even though the value of Email1Address is not " me@microsoft.com."
</remarks>
<example>
In this example, myRestrictedCollection contains Appointments that occur only on 8/22/2001.
<code>
AppointmentCollection c = myOutlookSession.Appointments.Items;
AppointmentCollection myRestrictedCollection = c.Restrict("[StartDate] >= 8/22/2001 0:0 AND [StartDate] <= 8/23/2001 0:0");
</code>
</example>
<returns>The collection of PIM items matching the restriction.</returns>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.Sort(System.String,System.Boolean)">
<summary>
Sorts the PIM items in a collection based on one of the PimItem properties. You can specify either an ascending or a descending sort order.
</summary>
<param name="propertyName">The name of the property to sort on. For example:
<code>myItemCollection.Sort("Subject", true);</code>
</param>
<param name="descending">true to sort in descending order, false otherwise.</param>
<returns>true if the sort was successful; otherwise false.</returns>
<remarks>
The Sort method is supported if SupportsSorting is true; otherwise, this method throws a NotSupportedException.
</remarks>
<exception cref="T:System.NotSupportedException">Sort is not supported.</exception>
<exception cref="T:System.ArgumentNullException">propertyName is null.</exception>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.RemoveAt(System.Int32)">
<summary>
Removes the PIM item from the collection, at the specified index position.
</summary>
<param name="index">Index in which the item is removed.</param>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.Insert(System.Int32,Microsoft.WindowsMobile.PocketOutlook.PimItem)">
<summary>
Not supported.
</summary>
<param name="index">Where in the collection to insert the PimItem.</param>
<param name="value">The PimItem to be inserted.</param>
<remarks>This method is Not Supported</remarks>
<exception cref="T:System.NotSupportedException">This method is not supported.</exception>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.Remove(Microsoft.WindowsMobile.PocketOutlook.PimItem)">
<summary>
Removes a PIM item from the collection, based on the current sort order.
</summary>
<remarks> An exception will be thrown by this.RemoveAt if this.AllowRemove is false.</remarks>
<param name="value">The PIM item to be removed from the collection.</param>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.Contains(Microsoft.WindowsMobile.PocketOutlook.PimItem)">
<summary>
Gets a value indicating whether a specific PIM item exists in the collection.
</summary>
<param name="value">The PimItem to be found.</param>
<returns>True if the item is found in the collection. False if the item is not found in the collection.</returns>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.Clear">
<summary>
Deletes all PIM items from the collection.
</summary>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.IndexOf(Microsoft.WindowsMobile.PocketOutlook.PimItem)">
<summary>
Gets a PIM item鈥檚 position in the collection.
</summary>
<remarks>
Strongly typed.
</remarks>
<param name="value">The PimItem to find the index of.</param>
<returns>The index of the PimItem if found in the list; otherwise, -1.</returns>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.Add(Microsoft.WindowsMobile.PocketOutlook.PimItem)">
<summary>
Creates and inserts a new PIM item into the collection.
</summary>
<param name="value">The item to be added.</param>
<returns>The position into which the new item was inserted</returns>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.Add(Microsoft.WindowsMobile.PocketOutlook.PimItem,Microsoft.WindowsMobile.PocketOutlook.FolderType)">
<summary>
Creates a new item for a folder in the Items collection. The item type depends on the folder type.
</summary>
<returns>The position into which the new item was inserted</returns>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.CopyTo(Microsoft.WindowsMobile.PocketOutlook.PimItem[],System.Int32)">
<summary>
Copies all PIM items in the collection into a PimItem array, beginning at the specified array index.
</summary>
<param name="array">The array of items to fill</param>
<param name="index">The starting position.</param>
<exception cref="T:System.ArgumentOutOfRangeException">The index parameter is less than zero. </exception>
<exception cref="T:System.ArgumentException">The index parameter is greater than or equal to the length of the array parameter. Can also be thrown if the number of elements in the source array is greater than the available space from index to the end of the destination array.</exception>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.CopyTo(System.Array,System.Int32)">
<summary>
Copies all PIM items in the collection into a generic array, beginning at the specified array index.
</summary>
<param name="array">The array of items to fill</param>
<param name="index">The starting position.</param>
<exception cref="T:System.ArgumentOutOfRangeException">The index parameter is less than zero. </exception>
<exception cref="T:System.ArgumentException">The index parameter is greater than or equal to the length of the array parameter. Can also be thrown if the number of elements in the source array is greater than the available space from index to the end of the destination array.</exception>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.GetEnumerator">
<summary>
Gets an enumerator for iterating through the PIM item collection.
</summary>
<returns>The enumerator that can iterate through a collection.</returns>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.System#Collections#IEnumerable#GetEnumerator">
<summary>
Gets an enumerator for iterating through the PIM item collection.
</summary>
<returns>A new PimItemCollectionEnumerator.</returns>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.Dispose">
<summary>
Disposes the collection.
</summary>
<remarks>
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. Disables finalization by the garbage collector by a calling GC.SuppressFinalize(this).
</remarks>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.Dispose(System.Boolean)">
<summary>
Dispose the collection.
</summary>
<param name="disposing">true if called from Dispose(), otherwise false.</param>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.AddIndex(System.ComponentModel.PropertyDescriptor)">
<summary>
Adds the sorting property descriptor to the indexes used for a search.
</summary>
<param name="property">The PropertyDescriptor to add to the indexes used for searching.</param>
<remarks>The list must support this method. However, support for this method can be a nonoperation.</remarks>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.ApplySort(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection)">
<summary>
Sorts the list based on a property descriptor and a sort direction.
</summary>
<param name="property">The PropertyDescriptor to sort by. </param>
<param name="direction">One of the ListSortDirection values. </param>
<exception cref="T:System.NotSupportedException">Thrown when SupportsSearching is false.</exception>
<exception cref="T:System.ArgumentNullException">Thrown when the property descriptor is null.</exception>
<remarks>
If items are added or removed, these items are placed in the order of the sort.
When you call this method, you should raise a ListChanged event with the Reset enumeration.
</remarks>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.Find(System.ComponentModel.PropertyDescriptor,System.Object)">
<summary>
Finds the PIM item with the matching property description value.
</summary>
<param name="property">The PropertyDescriptor to search on.</param>
<param name="key">The value of the property parameter to search for.</param>
<returns>The index of the row that has the given PropertyDescriptor.</returns>
<remarks>This method will select the first row where the value of the property parameter
equals the value of the key parameter.</remarks>
<exception cref="T:System.NotSupportedException">Thrown when SupportSearching is false.</exception>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.System#ComponentModel#IBindingList#AddNew">
<summary>
Adds a new PIM item to the collection.
</summary>
<returns>The new object that just got added.</returns>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.RemoveIndex(System.ComponentModel.PropertyDescriptor)">
<summary>
Removes the property descriptor from the search indexes.
</summary>
<param name="property">The PropertyDescriptor to remove from the indexes used for searching. </param>
<remarks>The list must support this method. However, support for this method can be a nonoperation.</remarks>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.RemoveSort">
<summary>
Removes a sort applied with ApplySort.
</summary>
<exception cref="T:System.NotSupportedException">This property is not supported.</exception>
<remarks>This property is supported if SupportsSorting is true; otherwise, this property throws a NotSupportedException.
It is recommended that when you call RemoveSort, that you raise a ListChanged event with the Reset enumeration.
</remarks>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.Add(System.Object)">
<summary>
Creates a new PIM item and adds it to the collection.
</summary>
<param name="value">The item to be added.</param>
<returns>The position into which the new item was inserted</returns>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.Contains(System.Object)">
<summary>
Gets a value indicating whether the collection contains the supplied PIM item.
</summary>
<param name="item">The item to search for.</param>
<returns> true if the collection contains the item; false otherwise.</returns>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.IndexOf(System.Object)">
<summary>
Gets the position of the PIM item in the collection.
</summary>
<param name="item">The PimItem to find the index of.</param>
<exception cref="T:Microsoft.WindowsMobile.PocketOutlook.PocketOutlookException">Thrown when there is any error getting the index of the PimItem.</exception>
<returns>Returns the index of the PimItem.</returns>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.Insert(System.Int32,System.Object)">
<summary>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -