C# Class System.Windows.Forms.ComboBox.ObjectCollection

Inheritance: IList, ICollection, IEnumerable
Show file Open project: Clancey/MonoMac.Windows.Form Class Usage Examples

Private Properties

Property Type Description
AddItem int
AddRange void
ICollection void
IList int
OnUIACollectionChangedEvent void
Sort void
this object

Public Methods

Method Description
Add ( object item ) : int
AddRange ( object items ) : void
Clear ( ) : void
Contains ( object value ) : bool
CopyTo ( object destination, int arrayIndex ) : void
GetEnumerator ( ) : IEnumerator
IndexOf ( object value ) : int
Insert ( int index, object item ) : void
ObjectCollection ( ComboBox owner ) : System.Collections
Remove ( object value ) : void
RemoveAt ( int index ) : void

Private Methods

Method Description
AddItem ( object item, bool suspend ) : int
AddRange ( IList items ) : void
ICollection ( Array destination, int index ) : void
IList ( object item ) : int
OnUIACollectionChangedEvent ( CollectionChangeEventArgs args ) : void
Sort ( ) : void
this ( int index ) : object

Method Details

Add() public method

public Add ( object item ) : int
item object
return int

AddRange() public method

public AddRange ( object items ) : void
items object
return void

Clear() public method

public Clear ( ) : void
return void

Contains() public method

public Contains ( object value ) : bool
value object
return bool

CopyTo() public method

public CopyTo ( object destination, int arrayIndex ) : void
destination object
arrayIndex int
return void

GetEnumerator() public method

public GetEnumerator ( ) : IEnumerator
return IEnumerator

IndexOf() public method

public IndexOf ( object value ) : int
value object
return int

Insert() public method

public Insert ( int index, object item ) : void
index int
item object
return void

ObjectCollection() public method

public ObjectCollection ( ComboBox owner ) : System.Collections
owner ComboBox
return System.Collections

Remove() public method

public Remove ( object value ) : void
value object
return void

RemoveAt() public method

public RemoveAt ( int index ) : void
index int
return void