?? microsoft.windowsmobile.pocketoutlook.xml
字號:
Adds a generic object to the PIM item collection, at specific position.
</summary>
<remarks>
<b>Note</b>: Not supported.
</remarks>
<param name="index">Where in the collection to insert the PimItem.</param>
<param name="item">The PimItem to be inserted.</param>
<exception cref="T:System.NotSupportedException">This method is not supported.</exception>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.Remove(System.Object)">
<summary>
Removes a generic object from the PIM item collection, based on the current sort order.
</summary>
<param name="item">The PimItem to be removed from the collection.</param>
</member>
<member name="E:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.ListChanged">
<summary>
Occurs when either the collection changes, or when an individual PIM item in the collection changes.
</summary>
<remarks>
Occurs only if the SupportsChangeNotification property is TRUE.
</remarks>
</member>
<member name="P:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.Count">
<summary>
Gets the number of PIM Items in the collection.
</summary>
</member>
<member name="P:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.System#Collections#ICollection#Count">
<summary>
Gets the number of elements contained in the ICollection.
</summary>
</member>
<member name="P:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.IsSynchronized">
<summary>
Gets a value indicating whether access to the ICollection is thread-safe.
</summary>
<remarks>
<b>Note</b>: <b>SyncRoot</b> is supported, but <b>IsSynchronized</b> always returns a value of <b>false</b>.
</remarks>
<returns>
<b>false</b>
</returns>
</member>
<member name="P:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.SyncRoot">
<summary>
Gets an object that can be used to synchronize access to the ICollection.
</summary>
<remarks>
Not supported.
</remarks>
<returns>
<b>null</b>
</returns>
</member>
<member name="P:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.AllowEdit">
<summary>
Gets a value indicating whether it is possible to update PIM items in the collection.
</summary>
<value>True if it is possible to update the items in the list, otherwise false.</value>
</member>
<member name="P:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.AllowNew">
<summary>
Gets a value indicating whether it is possible to use AddNew to add PIM items to the collection.
</summary>
<remarks>
True if it is possible to add items, otherwise false.
<para>
If IList.IsFixedSize or IList.IsReadOnly is true, then AllowNew returns false.
</para>
</remarks>
</member>
<member name="P:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.AllowRemove">
<summary>
Gets a value indicating whether it is possible to use either Remove or RemoveAt to remove PIM items from the collection.
</summary>
<remarks>Returns false if either IList.IsFixedSize or IList.IsReadOnly is true. If AllowRemove returns false, then IList.Remove and IList.RemoveAt will throw the exception NotSupportedException.
</remarks>
</member>
<member name="P:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.IsSorted">
<summary>
Gets a value indicating whether the items in the collection are sorted.
</summary>
<remarks>This property is supported if SupportsSorting is true; otherwise, this property throws a NotSupportedException.
If IsSorted returns true, items are added or removed in the order of the sort.
</remarks>
<exception cref="T:System.NotSupportedException">This property is not supported.</exception>
</member>
<member name="P:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.SortDirection">
<summary>
Gets the direction of the sort.
</summary>
<remarks>This property is supported if SupportsSorting is true; otherwise, this property throws a NotSupportedException.</remarks>
<exception cref="T:System.NotSupportedException">This property is not supported.</exception>
</member>
<member name="P:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.SortProperty">
<summary>
Gets the sorting property descriptor.
</summary>
<remarks>This property is supported if SupportsSorting is true; otherwise, this property throws a NotSupportedException.</remarks>
<exception cref="T:System.NotSupportedException">This property is not supported.</exception>
</member>
<member name="P:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.SupportsChangeNotification">
<summary>
Gets a value indicating whether a ListChanged event is raised when either the list changes, or a PIM item in the list changes.
</summary>
<value>true if a ListChanged event is raised when the list changes, or when an item in the list changes; otherwise false.</value>
<remarks>Objects in the list must notify the list when they change, so the list can raise a ListChanged event.</remarks>
</member>
<member name="P:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.SupportsSearching">
<summary>
Gets a value indicating whether the collection supports searching using the Find method.
</summary>
<remarks>true if the list supports searching using the Find method; otherwise, false.</remarks>
</member>
<member name="P:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.SupportsSorting">
<summary>
Gets a value indicating whether the collection supports sorting (that is, whether it is possible to use the Sort and ApplySort methods).
</summary>
<remarks>true if the list supports sorting using the Sort and ApplySort methods; otherwise, false.</remarks>
</member>
<member name="P:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.IsFixedSize">
<summary>
Gets a value indicating whether the collection has a fixed size.
</summary>
</member>
<member name="P:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.IsReadOnly">
<summary>
Gets a value indicating whether the collection is read-only.
</summary>
</member>
<member name="P:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.System#Collections#IList#Item(System.Int32)">
<summary>
Gets a PIM item from the collection at the specified index into the collection.
</summary>
<exception cref="T:System.NotSupportedException">Thrown when an item is set through the indexer.</exception>
</member>
<member name="P:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.Item(System.Int32)">
<summary>
Gets a PIM item at the specified index in the collection.
</summary>
<remarks>
Each time you retrieve a PIM item with the indexer, you get a newly instantiated PIM item.
</remarks>
</member>
<member name="T:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.PimItemCollectionEnumerator">
<summary>
Defines an enumerator for iterating through PIM item collections.
</summary>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.PimItemCollectionEnumerator.#ctor(Microsoft.WindowsMobile.PocketOutlook.PimItemCollection)">
<summary>
The constructor for the PimItemCollectionEnumerator class.
</summary>
<param name="collection">Collection that will be enumerated.</param>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.PimItemCollectionEnumerator.Reset">
<summary>
Resets the enumerator.
</summary>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.PimItemCollectionEnumerator.MoveNext">
<summary>
Increments the enumerator to the next PIM item in the collection.
</summary>
<returns>TRUE if able to move to the next item. FALSE if it doesn't move to the next item.</returns>
</member>
<member name="P:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.PimItemCollectionEnumerator.Current">
<summary>
Gets the current PIM item from the enumerator.
</summary>
</member>
<member name="P:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.PimItemCollectionEnumerator.System#Collections#IEnumerator#Current">
<summary>
Gets the current generic object from the enumerator.
</summary>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.AppointmentCollection.Restrict(System.String)">
<summary>
Returns a new AppointmentCollection object that contains only Appointment objects that match a set of criteria, providing a filtered view of a collection of appointments.
</summary>
<param name="restriction">
A string that defines which items to find.
The string must contain a Boolean expression that evaluates to 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 "not me@microsoft.com."
</remarks>
<returns>The Collection of Items matching the Restriction.</returns>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.AppointmentCollection.Contains(Microsoft.WindowsMobile.PocketOutlook.Appointment)">
<summary>
Checks to see whether a specific Appointment object exists in the AppointmentCollection object.
</summary>
<param name="item">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.AppointmentCollection.Add(Microsoft.WindowsMobile.PocketOutlook.PimItem)">
<summary>
Adds an Appointment object to the AppointmentCollection object.
</summary>
<exception cref="T:System.NotSupportedException">Thrown when AllowNew is false.</exception>
<returns>The position into which the new element was inserted.</returns>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.AppointmentCollection.Remove(Microsoft.WindowsMobile.PocketOutlook.Appointment)">
<summary>
Removes a specific Appointment object from the AppointmentCollection object.
</summary>
<param name="item">The PimItem to be removed from the collection.</param>
</member>
<member name="M:Microsoft.WindowsMobile.PocketOutlook.AppointmentCollection.CopyTo(Microsoft.WindowsMobile.PocketOutlook.Appointment[],System.Int32)">
<summary>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -