C# 클래스 ComponentFactory.Krypton.Docking.DockingElementClosedCollection

Extends base functionality by allowing a collection of child docking elements.
상속: DockingElement
파일 보기 프로젝트 열기: ComponentFactory/Krypton

공개 메소드들

메소드 설명
Contains ( IDockingElement item ) : bool

Determines whether the collection contains the docking element.

DockingElementClosedCollection ( string name ) : System

Initialize a new instance of the DockingElementClosedCollection class.

GetEnumerator ( ) : IEnumerator

Shallow enumerate over child docking elements.

this ( int index ) : IDockingElement

Gets the docking element at the specified index.

this ( string name ) : IDockingElement

Gets the docking element with the specified name.

보호된 메소드들

메소드 설명
InternalAdd ( IDockingElement item ) : void

Append a docking element to the collection.

InternalClear ( ) : void

Remove all docking elements from the collection.

InternalInsert ( int index, IDockingElement item ) : void

Insert a docking element to the collection.

InternalRemove ( IDockingElement item ) : bool

Removes first occurance of specified docking element.

메소드 상세

Contains() 공개 메소드

Determines whether the collection contains the docking element.
public Contains ( IDockingElement item ) : bool
item IDockingElement IDockingElement reference.
리턴 bool

DockingElementClosedCollection() 공개 메소드

Initialize a new instance of the DockingElementClosedCollection class.
public DockingElementClosedCollection ( string name ) : System
name string Initial name of the element.
리턴 System

GetEnumerator() 공개 메소드

Shallow enumerate over child docking elements.
public GetEnumerator ( ) : IEnumerator
리턴 IEnumerator

InternalAdd() 보호된 메소드

Append a docking element to the collection.
protected InternalAdd ( IDockingElement item ) : void
item IDockingElement IDockingElement reference.
리턴 void

InternalClear() 보호된 메소드

Remove all docking elements from the collection.
protected InternalClear ( ) : void
리턴 void

InternalInsert() 보호된 메소드

Insert a docking element to the collection.
protected InternalInsert ( int index, IDockingElement item ) : void
index int Insertion index.
item IDockingElement IDockingElement reference.
리턴 void

InternalRemove() 보호된 메소드

Removes first occurance of specified docking element.
protected InternalRemove ( IDockingElement item ) : bool
item IDockingElement IDockingElement reference.
리턴 bool

this() 공개 메소드

Gets the docking element at the specified index.
public this ( int index ) : IDockingElement
index int Index.
리턴 IDockingElement

this() 공개 메소드

Gets the docking element with the specified name.
public this ( string name ) : IDockingElement
name string Name of element.
리턴 IDockingElement