C# Класс ComponentFactory.Krypton.Docking.DockingElementClosedCollection

Extends base functionality by allowing a collection of child docking elements.
Наследование: DockingElement
Показать файл Открыть проект

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

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