C# Class ComponentFactory.Krypton.Docking.DockingElementOpenCollection

Extends base functionality by allowing a collection of child docking elements.
Inheritance: DockingElementClosedCollection
Show file Open project: ComponentFactory/Krypton

Public Methods

Method Description
Add ( IDockingElement item ) : void

Append a docking element to the collection.

Clear ( ) : void

Remove all docking elements from the collection.

DockingElementOpenCollection ( string name ) : System

Initialize a new instance of the DockingElementOpenCollection class.

Insert ( int index, IDockingElement item ) : void

Append a docking element to the collection.

Remove ( IDockingElement item ) : bool

Removes first occurance of specified docking element.

Method Details

Add() public method

Append a docking element to the collection.
public Add ( IDockingElement item ) : void
item IDockingElement IDockingElement reference.
return void

Clear() public method

Remove all docking elements from the collection.
public Clear ( ) : void
return void

DockingElementOpenCollection() public method

Initialize a new instance of the DockingElementOpenCollection class.
public DockingElementOpenCollection ( string name ) : System
name string Initial name of the element.
return System

Insert() public method

Append a docking element to the collection.
public Insert ( int index, IDockingElement item ) : void
index int Insert index.
item IDockingElement IDockingElement reference.
return void

Remove() public method

Removes first occurance of specified docking element.
public Remove ( IDockingElement item ) : bool
item IDockingElement IDockingElement reference.
return bool