C# Class ZForge.Controls.ExplorerBar.TaskPane.ExpandoCollection

Represents a collection of Expando objects
Inheritance: System.Collections.CollectionBase
Mostrar archivo Open project: zhuangyy/Motion Class Usage Examples

Public Methods

Method Description
Add ( Expando value ) : void

Adds the specified expando to the expando collection

AddRange ( Expando expandos ) : void

Adds an array of expando objects to the collection

Clear ( ) : void

Removes all expandos from the collection

Contains ( Control control ) : bool

Determines whether the specified control is a member of the collection

Contains ( Expando expando ) : bool

Determines whether the specified expando is a member of the collection

ExpandoCollection ( TaskPane owner ) : System

Initializes a new instance of the TaskPane.ExpandoCollection class

IndexOf ( Expando expando ) : int

Retrieves the index of the specified expando in the expando collection

Move ( Expando value, int index ) : void

Moves the specified expando to the specified indexed location in the expando collection

MoveToBottom ( Expando value ) : void

Moves the specified expando to the bottom of the expando collection

MoveToTop ( Expando value ) : void

Moves the specified expando to the top of the expando collection

Remove ( Expando value ) : void

Removes the specified expando from the expando collection

RemoveAt ( int index ) : void

Removes an expando from the expando collection at the specified indexed location

this ( int index ) : Expando

The Expando located at the specified index location within the expando collection

Method Details

Add() public method

Adds the specified expando to the expando collection
public Add ( Expando value ) : void
value Expando The Expando to add to the expando collection
return void

AddRange() public method

Adds an array of expando objects to the collection
public AddRange ( Expando expandos ) : void
expandos Expando An array of Expando objects to add /// to the collection
return void

Clear() public method

Removes all expandos from the collection
public Clear ( ) : void
return void

Contains() public method

Determines whether the specified control is a member of the collection
public Contains ( Control control ) : bool
control System.Windows.Forms.Control The Control to locate in the collection
return bool

Contains() public method

Determines whether the specified expando is a member of the collection
public Contains ( Expando expando ) : bool
expando Expando The Expando to locate in the collection
return bool

ExpandoCollection() public method

Initializes a new instance of the TaskPane.ExpandoCollection class
public ExpandoCollection ( TaskPane owner ) : System
owner TaskPane A TaskPane representing the taskpane that owns /// the Expando collection
return System

IndexOf() public method

Retrieves the index of the specified expando in the expando collection
public IndexOf ( Expando expando ) : int
expando Expando The Expando to locate in the collection
return int

Move() public method

Moves the specified expando to the specified indexed location in the expando collection
public Move ( Expando value, int index ) : void
value Expando The expando to be moved
index int The indexed location in the expando collection /// that the specified expando will be moved to
return void

MoveToBottom() public method

Moves the specified expando to the bottom of the expando collection
public MoveToBottom ( Expando value ) : void
value Expando The expando to be moved
return void

MoveToTop() public method

Moves the specified expando to the top of the expando collection
public MoveToTop ( Expando value ) : void
value Expando The expando to be moved
return void

Remove() public method

Removes the specified expando from the expando collection
public Remove ( Expando value ) : void
value Expando The Expando to remove from the /// TaskPane.ExpandoCollection
return void

RemoveAt() public method

Removes an expando from the expando collection at the specified indexed location
public RemoveAt ( int index ) : void
index int The index value of the Expando to /// remove
return void

this() public method

The Expando located at the specified index location within the expando collection
public this ( int index ) : Expando
index int The index of the expando to retrieve /// from the expando collection
return Expando