⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 microsoft.windowsmobile.pocketoutlook.xml

📁 Wince 上操作短信的实例
💻 XML
📖 第 1 页 / 共 5 页
字号:
            The maximum duration is 31 days. The default duration is one hour.
            </remarks>
            </summary>
        </member>
        <member name="P:Microsoft.WindowsMobile.PocketOutlook.Appointment.Recipients">
            <summary>
            Gets the collection of Recipients for a Meeting. The RecipientCollection object is available only if IsMeeting is TRUE.
            </summary>
        </member>
        <member name="P:Microsoft.WindowsMobile.PocketOutlook.Appointment.RecurrencePattern">
            <summary>
            Gets an Appointment's recurrence pattern. A recurrence pattern defines when and how often an Appointment repeats (for example, every Monday at 9:00 AM).
            </summary>
        </member>
        <member name="T:Microsoft.WindowsMobile.PocketOutlook.AppointmentCollection">
            <summary>
            Represents the collection of Appointment items in an Appointment (Calendar) folder.
            <seealso cref="T:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection"/>
            </summary>
        </member>
        <member name="T:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection">
            <summary>
            Defines container operations (for example, adding, removing, and sorting items), along with state information (for example, references to the containing folder, whether the collection is sorted, etc.) about generic PIM item collections.
            </summary>
            <remarks>
            This is the base class for Appointment, Task, and Contact collections.
            <para>The PimItemCollection class provides methods for adding and removing PimItem objects to or from a collection, searching for items within a collection, and sorting collection items. It contains methods for indexing into a collection, information about the number of items in a collection, and whether or not you can add or remove items to or from a collection.</para>
            <para>The Pocket Outlook object model parallels the desktop Outlook object model by grouping PimItem objects into folders, but folders are actually implemented as collections. For example, the ContactFolder object has an Item property, and the accessor for this property returns a ContactCollection object, not a PimItem object.</para>
            </remarks>
        </member>
        <member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.SealCollection">
            <summary>
            Seals the collection, this is needed when a custom Collection is returned. (i.e. Restricted collection)
            Natively it is not possible to just add to an ICollection.
            All that can be done is Saving and Filtering.
            </summary>
        </member>
        <member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.AddNew">
            <summary>
            Adds a new PIM item to the collection.
            </summary>
            <returns>The item added to the list.</returns>
            <exception cref="T:System.NotSupportedException">This property is not supported.</exception>
            <remarks>This method is supported only if AllowNew is true; otherwise, a NotSupportedException is thrown.
            Implementing this method means that the IBindingList list must understand the type of objects 
            to add to the list and must understand how to create a new instance of that type. 
            For example, if you have a collection of myCustomer objects, the AddNew method should add 
            a new myCustomer object to the list.
            The base is used to throw a generic message when AllowNew is false.
            </remarks>        
        </member>
        <member name="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.Finalize">
            <summary>
            The PimItemCollection class destructor.
            </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 &quot;&lt;, &lt;=, &gt;, &gt;=, =, &lt;&gt;&quot;
            </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]&lt;&gt;me@microsoft.com, even though the value of Email1Address is not &quot; me@microsoft.com.&quot;
            </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] &gt;= 8/22/2001 0:0 AND [StartDate] &lt;= 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>
            <remarks>
            Both <b>RemoveAt</b> and <see cref="M:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.Remove(Microsoft.WindowsMobile.PocketOutlook.PimItem)"/> throw a <b>NotSupportedException</b> exception 
            if <see cref="P:Microsoft.WindowsMobile.PocketOutlook.PimItemCollection.AllowRemove"/> is <i>false</i>.
            </remarks>
            <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>
            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="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>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -