C# Класс ZForge.Controls.ExplorerBar.TaskPane.ExpandoCollection

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

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

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

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

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

Adds the specified expando to the expando collection
public Add ( Expando value ) : void
value Expando The Expando to add to the expando collection
Результат void

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

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

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

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

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

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

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

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

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

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

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

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

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

Moves the specified expando to the bottom of the expando collection
public MoveToBottom ( Expando value ) : void
value Expando The expando to be moved
Результат void

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

Moves the specified expando to the top of the expando collection
public MoveToTop ( Expando value ) : void
value Expando The expando to be moved
Результат void

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

Removes the specified expando from the expando collection
public Remove ( Expando value ) : void
value Expando The Expando to remove from the /// TaskPane.ExpandoCollection
Результат void

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

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

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

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