C# 클래스 SourceGrid.Styles.StyleCellCollection

A collection of elements of type StyleCell
상속: System.Collections.CollectionBase
파일 보기 프로젝트 열기: zhuangyy/Motion 1 사용 예제들

공개 메소드들

메소드 설명
Add ( StyleCell value ) : void

Adds an instance of type StyleCell to the end of this StyleCellCollection.

AddRange ( StyleCell items ) : void

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

AddRange ( StyleCellCollection items ) : void

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

Contains ( StyleCell value ) : bool

Determines whether a specfic StyleCell value is in this StyleCellCollection.

GetEnumerator ( ) : StyleCellCollection.Enumerator

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

IndexOf ( StyleCell value ) : int

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

Insert ( int index, StyleCell value ) : void

Inserts an element into the StyleCellCollection at the specified index

Remove ( StyleCell value ) : void

Removes the first occurrence of a specific StyleCell from this StyleCellCollection.

StyleCellCollection ( ) : System

Initializes a new empty instance of the StyleCellCollection class.

StyleCellCollection ( StyleCell items ) : System

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

StyleCellCollection ( StyleCellCollection items ) : System

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

this ( int index ) : StyleCell

Gets or sets the StyleCell at the given index in this StyleCellCollection.

메소드 상세

Add() 공개 메소드

Adds an instance of type StyleCell to the end of this StyleCellCollection.
public Add ( StyleCell value ) : void
value StyleCell /// The StyleCell to be added to the end of this StyleCellCollection. ///
리턴 void

AddRange() 공개 메소드

Adds the elements of an array to the end of this StyleCellCollection.
public AddRange ( StyleCell items ) : void
items StyleCell /// The array whose elements are to be added to the end of this StyleCellCollection. ///
리턴 void

AddRange() 공개 메소드

Adds the elements of another StyleCellCollection to the end of this StyleCellCollection.
public AddRange ( StyleCellCollection items ) : void
items StyleCellCollection /// The StyleCellCollection whose elements are to be added to the end of this StyleCellCollection. ///
리턴 void

Contains() 공개 메소드

Determines whether a specfic StyleCell value is in this StyleCellCollection.
public Contains ( StyleCell value ) : bool
value StyleCell /// The StyleCell value to locate in this StyleCellCollection. ///
리턴 bool

GetEnumerator() 공개 메소드

Returns an enumerator that can iterate through the elements of this StyleCellCollection.
public GetEnumerator ( ) : StyleCellCollection.Enumerator
리턴 StyleCellCollection.Enumerator

IndexOf() 공개 메소드

Return the zero-based index of the first occurrence of a specific value in this StyleCellCollection
public IndexOf ( StyleCell value ) : int
value StyleCell /// The StyleCell value to locate in the StyleCellCollection. ///
리턴 int

Insert() 공개 메소드

Inserts an element into the StyleCellCollection at the specified index
public Insert ( int index, StyleCell value ) : void
index int /// The index at which the StyleCell is to be inserted. ///
value StyleCell /// The StyleCell to insert. ///
리턴 void

Remove() 공개 메소드

Removes the first occurrence of a specific StyleCell from this StyleCellCollection.
public Remove ( StyleCell value ) : void
value StyleCell /// The StyleCell value to remove from this StyleCellCollection. ///
리턴 void

StyleCellCollection() 공개 메소드

Initializes a new empty instance of the StyleCellCollection class.
public StyleCellCollection ( ) : System
리턴 System

StyleCellCollection() 공개 메소드

Initializes a new instance of the StyleCellCollection class, containing elements copied from an array.
public StyleCellCollection ( StyleCell items ) : System
items StyleCell /// The array whose elements are to be added to the new StyleCellCollection. ///
리턴 System

StyleCellCollection() 공개 메소드

Initializes a new instance of the StyleCellCollection class, containing elements copied from another instance of StyleCellCollection
public StyleCellCollection ( StyleCellCollection items ) : System
items StyleCellCollection /// The StyleCellCollection whose elements are to be added to the new StyleCellCollection. ///
리턴 System

this() 공개 메소드

Gets or sets the StyleCell at the given index in this StyleCellCollection.
public this ( int index ) : StyleCell
index int
리턴 StyleCell