[]
Represents a ListItemCollectionInfo class used to store ListItemInfo objects.
[ListBindable(false)]
public class ListItemCollectionInfo : IList, ICollection, IEnumerable, ISerializable, IDeserializationCallback, ICloneable
<ListBindable(False)>
Public Class ListItemCollectionInfo
Implements IList, ICollection, IEnumerable, ISerializable, IDeserializationCallback, ICloneable
Name | Description |
---|---|
ListItemCollectionInfo(SerializationInfo, StreamingContext) | Initializes a new instance of this class. |
Name | Description |
---|---|
Count | Gets the count of the collection. |
this[int] | Gets or Sets the ListItemInfo from the collection. |
Name | Description |
---|---|
Add(ListItemInfo) | Adds an item to the collection. |
Add(string) | Adds a ListItemInfo object with the text to the collection. |
AddRange(ListItemInfo[]) | Adds a range of items of the specified collection to the end of the collection. |
AddRange(string[]) | Adds text of the specified collection to the end of the collection. |
Clear() | Clears all items in the collection. |
Contains(ListItemInfo) | Determines whether the collection contains the specified item. |
CopyTo(ListItemInfo[], int) | Copies the elements of the ICollection to an Array, starting at a particular Array index. |
Find(object, IComparer, int, int) | Finds the value by comparer from the start index. |
FindAllObject(object, int) | Finds the first item in the list that matches the specified object. |
FindAllString(string, int) | Finds the first item in the collection that starts with the specified string. |
FindAllStringExact(string, int) | Finds the first item in the list that matches the specified string. |
FindObject(object, int, int) | Finds the first item after specifed index that matches the specified object. |
FindString(string, int, int) | Finds the first item after the given index which starts with the given string. |
FindStringExact(string, int, int) | Finds the first item after the specified index that matches the specified string. |
GetEnumerator() | Gets the enumerator of the collection. |
GetObjectData(SerializationInfo, StreamingContext) | Gets the object data. |
IndexOf(ListItemInfo) | Gets the item index. |
Insert(int, ListItemInfo) | Inserts an item in the collection at the specified position. |
Remove(ListItemInfo) | Deletes a specific item from the collection. |
RemoveAt(int) | Removes the item at the specific position from the collection. |
ToArray() | Copies the subitems of the collection to a new array. |