C# Class Hd.QueryExtensions.SelectColumnCollection

Inheritance: System.Collections.CollectionBase
显示文件 Open project: TargetProcess/Tp.HelpDesk Class Usage Examples

Public Methods

Method 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 method

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. ///
return void

AddRange() public method

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. ///
return void

AddRange() public method

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. ///
return void

Contains() public method

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. ///
return bool

GetEnumerator() public method

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

IndexOf() public method

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. ///
return int

Insert() public method

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. ///
return void

Remove() public method

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. ///
return void

SelectColumnCollection() public method

Initializes a new empty instance of the SelectColumnCollection class.
public SelectColumnCollection ( ) : System
return System

SelectColumnCollection() public method

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. ///
return System

SelectColumnCollection() public method

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. ///
return System

this() public method

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