C# Class ZForge.Controls.ExplorerBar.Expando.ItemCollection

Represents a collection of Control objects
Inheritance: System.Collections.CollectionBase
Mostrar archivo Open project: zhuangyy/Motion

Public Methods

Method Description
Add ( Control value ) : void

Adds the specified control to the control collection

AddRange ( Control controls ) : void

Adds an array of control objects to the collection

Clear ( ) : void

Removes all controls from the collection

Contains ( Control control ) : bool

Determines whether the specified control is a member of the collection

IndexOf ( Control control ) : int

Retrieves the index of the specified control in the control collection

ItemCollection ( Expando owner ) : System

Initializes a new instance of the Expando.ItemCollection class

Move ( Control value, int index ) : void

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

MoveToBottom ( Control value ) : void

Moves the specified control to the bottom of the control collection

MoveToTop ( Control value ) : void

Moves the specified control to the top of the control collection

Remove ( Control value ) : void

Removes the specified control from the control collection

RemoveAt ( int index ) : void

Removes a control from the control collection at the specified indexed location

this ( int index ) : Control

The Control located at the specified index location within the control collection

Method Details

Add() public method

Adds the specified control to the control collection
public Add ( Control value ) : void
value System.Windows.Forms.Control The Control to add to the control collection
return void

AddRange() public method

Adds an array of control objects to the collection
public AddRange ( Control controls ) : void
controls System.Windows.Forms.Control An array of Control objects to add /// to the collection
return void

Clear() public method

Removes all controls 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

IndexOf() public method

Retrieves the index of the specified control in the control collection
public IndexOf ( Control control ) : int
control System.Windows.Forms.Control The Control to locate in the collection
return int

ItemCollection() public method

Initializes a new instance of the Expando.ItemCollection class
public ItemCollection ( Expando owner ) : System
owner Expando An Expando representing the expando that owns /// the Control collection
return System

Move() public method

Moves the specified control to the specified indexed location in the control collection
public Move ( Control value, int index ) : void
value System.Windows.Forms.Control The control to be moved
index int The indexed location in the control collection /// that the specified control will be moved to
return void

MoveToBottom() public method

Moves the specified control to the bottom of the control collection
public MoveToBottom ( Control value ) : void
value System.Windows.Forms.Control The control to be moved
return void

MoveToTop() public method

Moves the specified control to the top of the control collection
public MoveToTop ( Control value ) : void
value System.Windows.Forms.Control The control to be moved
return void

Remove() public method

Removes the specified control from the control collection
public Remove ( Control value ) : void
value System.Windows.Forms.Control The Control to remove from the /// Expando.ItemCollection
return void

RemoveAt() public method

Removes a control from the control collection at the specified indexed location
public RemoveAt ( int index ) : void
index int The index value of the Control to /// remove
return void

this() public method

The Control located at the specified index location within the control collection
public this ( int index ) : Control
index int The index of the control to retrieve /// from the control collection
return System.Windows.Forms.Control