C# Class System.Windows.Forms.ImageList.ImageCollection

Inheritance: IList, ICollection, IEnumerable
Show file Open project: Meragon/Unity-WinForms Class Usage Examples

Private Properties

Property Type Description
ICollection void
IList bool
IList int
IList void
IList void
this objectIList.System

Public Methods

Method Description
Add ( Image value ) : void
Add ( string key, Image image ) : void
AddRange ( Image images ) : void
Clear ( ) : void
Contains ( Image image ) : bool
ContainsKey ( string key ) : bool
GetEnumerator ( ) : IEnumerator
IndexOf ( Image image ) : int
IndexOfKey ( string key ) : int
Remove ( Image image ) : void
RemoveAt ( int index ) : void
RemoveByKey ( string key ) : void
SetKeyName ( int index, string name ) : void
this ( int index ) : Image
this ( string key ) : Image

Private Methods

Method Description
ICollection ( Array dest, int index ) : void
IList ( object image ) : bool
IList ( object value ) : int
IList ( int index, object value ) : void
IList ( object image ) : void
this ( int index ) : objectIList.System

Method Details

Add() public method

public Add ( Image value ) : void
value System.Drawing.Image
return void

Add() public method

public Add ( string key, Image image ) : void
key string
image System.Drawing.Image
return void

AddRange() public method

public AddRange ( Image images ) : void
images System.Drawing.Image
return void

Clear() public method

public Clear ( ) : void
return void

Contains() public method

public Contains ( Image image ) : bool
image System.Drawing.Image
return bool

ContainsKey() public method

public ContainsKey ( string key ) : bool
key string
return bool

GetEnumerator() public method

public GetEnumerator ( ) : IEnumerator
return IEnumerator

IndexOf() public method

public IndexOf ( Image image ) : int
image System.Drawing.Image
return int

IndexOfKey() public method

public IndexOfKey ( string key ) : int
key string
return int

Remove() public method

public Remove ( Image image ) : void
image System.Drawing.Image
return void

RemoveAt() public method

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

RemoveByKey() public method

public RemoveByKey ( string key ) : void
key string
return void

SetKeyName() public method

public SetKeyName ( int index, string name ) : void
index int
name string
return void

this() public method

public this ( int index ) : Image
index int
return System.Drawing.Image

this() public method

public this ( string key ) : Image
key string
return System.Drawing.Image