C# Class Hd.QueryExtensions.SelectColumnCollection

Inheritance: System.Collections.CollectionBase
Afficher le fichier Open project: TargetProcess/Tp.HelpDesk Class Usage Examples

Méthodes publiques

Méthode Description
Add ( SelectColumn value ) : void

Adds an instance of type SelectColumn to the end of this SelectColumnCollection.

AddRange ( SelectColumn items ) : void

Adds the elements of an array to the end of this SelectColumnCollection.

AddRange ( SelectColumnCollection items ) : void

Adds the elements of another SelectColumnCollection to the end of this SelectColumnCollection.

Contains ( SelectColumn value ) : bool

Determines whether a specfic SelectColumn value is in this SelectColumnCollection.

GetEnumerator ( ) : Enumerator

Returns an enumerator that can iterate through the elements of this SelectColumnCollection.

IndexOf ( SelectColumn value ) : int

Return the zero-based index of the first occurrence of a specific value in this SelectColumnCollection

Insert ( int index, SelectColumn value ) : void

Inserts an element into the SelectColumnCollection at the specified index

Remove ( SelectColumn value ) : void

Removes the first occurrence of a specific SelectColumn from this SelectColumnCollection.

SelectColumnCollection ( ) : System

Initializes a new empty instance of the SelectColumnCollection class.

SelectColumnCollection ( SelectColumn items ) : System

Initializes a new instance of the SelectColumnCollection class, containing elements copied from an array.

SelectColumnCollection ( SelectColumnCollection items ) : System

Initializes a new instance of the SelectColumnCollection class, containing elements copied from another instance of SelectColumnCollection

this ( int index ) : SelectColumn

Gets or sets the SelectColumn at the given index in this SelectColumnCollection.

Method Details

Add() public méthode

Adds an instance of type SelectColumn to the end of this SelectColumnCollection.
public Add ( SelectColumn value ) : void
value SelectColumn /// The SelectColumn to be added to the end of this SelectColumnCollection. ///
Résultat void

AddRange() public méthode

Adds the elements of an array to the end of this SelectColumnCollection.
public AddRange ( SelectColumn items ) : void
items SelectColumn /// The array whose elements are to be added to the end of this SelectColumnCollection. ///
Résultat void

AddRange() public méthode

Adds the elements of another SelectColumnCollection to the end of this SelectColumnCollection.
public AddRange ( SelectColumnCollection items ) : void
items SelectColumnCollection /// The SelectColumnCollection whose elements are to be added to the end of this SelectColumnCollection. ///
Résultat void

Contains() public méthode

Determines whether a specfic SelectColumn value is in this SelectColumnCollection.
public Contains ( SelectColumn value ) : bool
value SelectColumn /// The SelectColumn value to locate in this SelectColumnCollection. ///
Résultat bool

GetEnumerator() public méthode

Returns an enumerator that can iterate through the elements of this SelectColumnCollection.
public GetEnumerator ( ) : Enumerator
Résultat Enumerator

IndexOf() public méthode

Return the zero-based index of the first occurrence of a specific value in this SelectColumnCollection
public IndexOf ( SelectColumn value ) : int
value SelectColumn /// The SelectColumn value to locate in the SelectColumnCollection. ///
Résultat int

Insert() public méthode

Inserts an element into the SelectColumnCollection at the specified index
public Insert ( int index, SelectColumn value ) : void
index int /// The index at which the SelectColumn is to be inserted. ///
value SelectColumn /// The SelectColumn to insert. ///
Résultat void

Remove() public méthode

Removes the first occurrence of a specific SelectColumn from this SelectColumnCollection.
public Remove ( SelectColumn value ) : void
value SelectColumn /// The SelectColumn value to remove from this SelectColumnCollection. ///
Résultat void

SelectColumnCollection() public méthode

Initializes a new empty instance of the SelectColumnCollection class.
public SelectColumnCollection ( ) : System
Résultat System

SelectColumnCollection() public méthode

Initializes a new instance of the SelectColumnCollection class, containing elements copied from an array.
public SelectColumnCollection ( SelectColumn items ) : System
items SelectColumn /// The array whose elements are to be added to the new SelectColumnCollection. ///
Résultat System

SelectColumnCollection() public méthode

Initializes a new instance of the SelectColumnCollection class, containing elements copied from another instance of SelectColumnCollection
public SelectColumnCollection ( SelectColumnCollection items ) : System
items SelectColumnCollection /// The SelectColumnCollection whose elements are to be added to the new SelectColumnCollection. ///
Résultat System

this() public méthode

Gets or sets the SelectColumn at the given index in this SelectColumnCollection.
public this ( int index ) : SelectColumn
index int
Résultat SelectColumn