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

Represents a collection of Control objects
Inheritance: System.Collections.CollectionBase
Afficher le fichier Open project: zhuangyy/Motion

Méthodes publiques

Méthode 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 méthode

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
Résultat void

AddRange() public méthode

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
Résultat void

Clear() public méthode

Removes all controls from the collection
public Clear ( ) : void
Résultat void

Contains() public méthode

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
Résultat bool

IndexOf() public méthode

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
Résultat int

ItemCollection() public méthode

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
Résultat System

Move() public méthode

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
Résultat void

MoveToBottom() public méthode

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
Résultat void

MoveToTop() public méthode

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
Résultat void

Remove() public méthode

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
Résultat void

RemoveAt() public méthode

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
Résultat void

this() public méthode

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
Résultat System.Windows.Forms.Control