C# 클래스 Hd.QueryExtensions.SelectColumnCollection

상속: System.Collections.CollectionBase
파일 보기 프로젝트 열기: TargetProcess/Tp.HelpDesk 1 사용 예제들

공개 메소드들

메소드 설명
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