C# Класс Hd.QueryExtensions.SelectColumnCollection

Наследование: System.Collections.CollectionBase
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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.

Описание методов

Add() публичный Метод

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. ///
Результат void

AddRange() публичный Метод

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. ///
Результат void

AddRange() публичный Метод

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. ///
Результат void

Contains() публичный Метод

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. ///
Результат bool

GetEnumerator() публичный Метод

Returns an enumerator that can iterate through the elements of this SelectColumnCollection.
public GetEnumerator ( ) : Enumerator
Результат Enumerator

IndexOf() публичный Метод

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. ///
Результат int

Insert() публичный Метод

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. ///
Результат void

Remove() публичный Метод

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. ///
Результат void

SelectColumnCollection() публичный Метод

Initializes a new empty instance of the SelectColumnCollection class.
public SelectColumnCollection ( ) : System
Результат System

SelectColumnCollection() публичный Метод

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. ///
Результат System

SelectColumnCollection() публичный Метод

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. ///
Результат System

this() публичный Метод

Gets or sets the SelectColumn at the given index in this SelectColumnCollection.
public this ( int index ) : SelectColumn
index int
Результат SelectColumn