C# Класс ZForge.Controls.ExplorerBar.Expando.ItemCollection

Represents a collection of Control objects
Наследование: System.Collections.CollectionBase
Показать файл Открыть проект

Открытые методы

Метод Описание
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

Описание методов

Add() публичный Метод

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
Результат void

AddRange() публичный Метод

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
Результат void

Clear() публичный Метод

Removes all controls from the collection
public Clear ( ) : void
Результат void

Contains() публичный Метод

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
Результат bool

IndexOf() публичный Метод

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
Результат int

ItemCollection() публичный Метод

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
Результат System

Move() публичный Метод

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
Результат void

MoveToBottom() публичный Метод

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
Результат void

MoveToTop() публичный Метод

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
Результат void

Remove() публичный Метод

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
Результат void

RemoveAt() публичный Метод

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
Результат void

this() публичный Метод

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
Результат System.Windows.Forms.Control