C# Класс Habanero.Faces.VWG.ListBoxVWG.ListBoxObjectCollectionGiz

Represents the collection of items in a ListBox
Наследование: IListBoxObjectCollection
Показать файл Открыть проект

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

Метод Описание
Add ( object item ) : void

Adds an item to the list of items for a ListBox

Clear ( ) : void

Removes all items from the collection

Contains ( object value ) : bool

Determines if the specified item is located within the collection

GetEnumerator ( ) : IEnumerator

Returns an enumerator that iterates through a collection.

IndexOf ( object value ) : int

Retrieves the index within the collection of the specified item

Insert ( int index, object businessObject ) : void
ListBoxObjectCollectionGiz ( ObjectCollection items ) : System
Remove ( object item ) : void

Removes the specified object from the collection

this ( int index ) : object

Retrieves the item at the specified index within the collection

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

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

Adds an item to the list of items for a ListBox
public Add ( object item ) : void
item object An object representing the item to add to the collection
Результат void

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

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

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

Determines if the specified item is located within the collection
public Contains ( object value ) : bool
value object An object representing the item to locate in the collection
Результат bool

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

Returns an enumerator that iterates through a collection.
public GetEnumerator ( ) : IEnumerator
Результат IEnumerator

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

Retrieves the index within the collection of the specified item
public IndexOf ( object value ) : int
value object An object representing the item to locate in the collection
Результат int

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

public Insert ( int index, object businessObject ) : void
index int
businessObject object
Результат void

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

public ListBoxObjectCollectionGiz ( ObjectCollection items ) : System
items ObjectCollection
Результат System

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

Removes the specified object from the collection
public Remove ( object item ) : void
item object An object representing the item to remove from the collection
Результат void

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

Retrieves the item at the specified index within the collection
public this ( int index ) : object
index int The index of the item in the collection to retrieve
Результат object