C# Class Habanero.Faces.Win.ControlCollectionWin

Represents a collection of controls
Inheritance: IControlCollection
Afficher le fichier Open project: Chillisoft/habanero.faces Class Usage Examples

Méthodes publiques

Méthode Description
Add ( IControlHabanero value ) : void

Adds a control to the collection

Clear ( ) : void

Removes all controls from the collection

Contains ( IControlHabanero value ) : bool

Indicates whether the collection contains the specified control

ControlCollectionWin ( Control col ) : System

Constructor for ControlCollectionWin

GetEnumerator ( ) : IEnumerator

Returns an enumerator that iterates through a collection.

IndexOf ( IControlHabanero value ) : int

Provides the index position of the control specified

Insert ( int index, IControlHabanero value ) : void

Insert a control at a specified index position

Remove ( IControlHabanero value ) : void

Removes the specified control from the collection

this ( int index ) : IControlHabanero

Indicates the Control at the specified indexed location in the collection

Method Details

Add() public méthode

Adds a control to the collection
public Add ( IControlHabanero value ) : void
value IControlHabanero The control to add
Résultat void

Clear() public méthode

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

Contains() public méthode

Indicates whether the collection contains the specified control
public Contains ( IControlHabanero value ) : bool
value IControlHabanero The control to search for
Résultat bool

ControlCollectionWin() public méthode

Constructor for ControlCollectionWin
public ControlCollectionWin ( Control col ) : System
col System.Windows.Forms.Control
Résultat System

GetEnumerator() public méthode

Returns an enumerator that iterates through a collection.
public GetEnumerator ( ) : IEnumerator
Résultat IEnumerator

IndexOf() public méthode

Provides the index position of the control specified
public IndexOf ( IControlHabanero value ) : int
value IControlHabanero The control to search for
Résultat int

Insert() public méthode

Insert a control at a specified index position
public Insert ( int index, IControlHabanero value ) : void
index int The index position at which to insert
value IControlHabanero The control to insert
Résultat void

Remove() public méthode

Removes the specified control from the collection
public Remove ( IControlHabanero value ) : void
value IControlHabanero The control to remove
Résultat void

this() public méthode

Indicates the Control at the specified indexed location in the collection
public this ( int index ) : IControlHabanero
index int
Résultat IControlHabanero