Click or drag to resize

CollectionBaseT Class

Represents a strongly-typed collection of Ts.
Inheritance Hierarchy

Namespace:  Bootstrap.A11y
Assembly:  Bootstrap.A11y (in Bootstrap.A11y.dll) Version: 1.1.0.0 (1.1.0.0)
Syntax
C#
public class CollectionBase<T> : CollectionBase
where T : Control

Type Parameters

T
The type of Controls in the collection.

The CollectionBaseT type exposes the following members.

Constructors
  NameDescription
Public methodCollectionBaseT
Initializes a new instance of the CollectionBaseT class.
Top
Properties
  NameDescription
Public propertyCapacity (Inherited from CollectionBase.)
Public propertyCount (Inherited from CollectionBase.)
Protected propertyInnerList (Inherited from CollectionBase.)
Public propertyItem
Gets or sets the element at the specified index.
Protected propertyList (Inherited from CollectionBase.)
Top
Methods
  NameDescription
Public methodAdd
Adds an object to the end of the list.
Public methodClear (Inherited from CollectionBase.)
Public methodContains
Determines whether an element is in the list.
Public methodCopyTo
Copies the entire list to a compatible one-dimensional array, starting at the specified index of the target array.
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetEnumerator (Inherited from CollectionBase.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Public methodIndexOf
Searches for the specified object and returns the zero-based index of the first occurrence within the entire list.
Public methodInsert
Inserts an element into the list at the specified index.
Protected methodMemberwiseClone (Inherited from Object.)
Protected methodOnClear (Inherited from CollectionBase.)
Protected methodOnClearComplete (Inherited from CollectionBase.)
Protected methodOnInsert (Inherited from CollectionBase.)
Protected methodOnInsertComplete (Inherited from CollectionBase.)
Protected methodOnRemove (Inherited from CollectionBase.)
Protected methodOnRemoveComplete (Inherited from CollectionBase.)
Protected methodOnSet (Inherited from CollectionBase.)
Protected methodOnSetComplete (Inherited from CollectionBase.)
Protected methodOnValidate (Inherited from CollectionBase.)
Public methodRemove
Removes the first occurrence of a specific object from the list.
Public methodRemoveAt (Inherited from CollectionBase.)
Public methodToString (Inherited from Object.)
Top
Fields
  NameDescription
Protected fieldParent
The parent control.
Top
See Also