📄 microsoft.windowsmobile.pocketoutlook.xml
字号:
<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>
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>
<remarks>
Both <b>Remove</b> and <see cref="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.RemoveAt(System.Int32)"/> throw a <b>NotSupportedException</b> exception
if <see cref="P:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.AllowRemove"/> is <i>false</i>.
</remarks>
<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 <i>false</i> if either <see cref="P:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.IsFixedSize"/> or <see cref="P:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.IsReadOnly"/> is true.
If <b>AllowRemove</b> returns <i>false</i>, then <see cref="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.Remove(Microsoft.WindowsMobile.PocketOutlook.PimItem)"/> and <see cref="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.RemoveAt(System.Int32)"/>
will throw the exception <b>NotSupportedException</b>.
</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 enume
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -