DataStoreVirtualCollectionT Class |
Namespace: Eto.Forms
public class DataStoreVirtualCollection<T> : IList<T>, ICollection<T>, IEnumerable<T>, IEnumerable, IList, ICollection
[Missing <typeparam name="T"/> documentation for "T:Eto.Forms.DataStoreVirtualCollection`1"]
The DataStoreVirtualCollectionT type exposes the following members.
Name | Description | |
---|---|---|
DataStoreVirtualCollectionT |
Initializes a new instance of the DataStoreVirtualCollectionT class.
|
Name | Description | |
---|---|---|
Count |
Gets the count of items in this collection
| |
IsFixedSize |
Gets a value indicating whether this instance is fixed size.
| |
IsReadOnly |
Gets a value indicating whether this instance is read only.
| |
IsSynchronized |
Gets a value indicating whether this instance is synchronized.
| |
Item |
Gets or sets the item at the specified index. This collection is read-only so setting the item throws an exception.
| |
SyncRoot |
Gets the sync root.
|
Name | Description | |
---|---|---|
Add(Object) |
Adds an item to the current collection.
| |
Add(T) |
Adds an item to the current collection. This collection is read-only so this throws an exception.
| |
Clear |
Clears all items from the collection. This collection is read-only so this throws an exception.
| |
Contains(Object) |
Determines whether the current collection contains a specific value.
| |
Contains(T) |
Determines whether the current collection contains a specific value.
| |
CopyTo(Array, Int32) |
Copies the contents of the collection to the specified array starting at the specified index
| |
CopyTo(T, Int32) |
Copies the contents of the collection to the specified array starting at the specified index
| |
GetEnumerator |
Gets the enumerator for the collection
| |
IndexOf(Object) |
Determines the index of a specific item in the current instance.
| |
IndexOf(T) |
Determines the index of a specific item in the collection.
| |
Insert(Int32, Object) |
Insert a value into the collection with the specified index
| |
Insert(Int32, T) |
Inserts an item at the specified index. This collection is read-only so this throws an exception.
| |
Remove(Object) |
Removes the first occurrence of an item from the current collection.
| |
Remove(T) |
Remove the specified item. This collection is read-only so this throws an exception.
| |
RemoveAt |
Removes the item at the specified index. This collection is read-only so this throws an exception.
|