Method | Description | |
---|---|---|
Add ( |
Adds the specifies KryptonCheckButton to the collection.
|
|
Contains ( |
Determines whether a KryptonCheckButton is in the collection.
|
|
IndexOf ( |
Returns the index of the KryptonCheckButton reference.
|
|
Insert ( int index, |
Inserts a KryptonCheckButton reference into the collection at the specified location.
|
|
KryptonCheckButtonCollection ( |
Initialize a new instance of the KryptonCheckButtonCollection class.
|
|
Remove ( |
Removes a KryptonCheckButton from the collection.
|
|
this ( int index ) : |
Gets the KryptonCheckButton at the specified index.
|
Method | Description | |
---|---|---|
OnClear ( ) : void |
Occurs when the collection is about to be cleared.
|
|
OnInsertComplete ( int index, object value ) : void |
Occurs when a new entry has been added to the collection.
|
|
OnRemoveComplete ( int index, object value ) : void |
Occurs when an entry has been removed from the collection.
|
|
OnSetComplete ( int index, object oldValue, object newValue ) : void |
Occurs when a index has a value replaced.
|
public Add ( |
||
checkButton | The KryptonCheckButton object to add to the collection. | |
return | int |
public Contains ( |
||
checkButton | The KryptonCheckButton to locate in the collection. | |
return | bool |
public IndexOf ( |
||
checkButton | The KryptonCheckButton to locate. | |
return | int |
public Insert ( int index, |
||
index | int | Index of position to insert. |
checkButton | The KryptonCheckButton reference to insert. | |
return | void |
public KryptonCheckButtonCollection ( |
||
owner | Owning component | |
return | System |
protected OnInsertComplete ( int index, object value ) : void | ||
index | int | Index of new entry. |
value | object | Value at the new index. |
return | void |
protected OnRemoveComplete ( int index, object value ) : void | ||
index | int | Index of the removed entry. |
value | object | Value at the removed entry. |
return | void |
protected OnSetComplete ( int index, object oldValue, object newValue ) : void | ||
index | int | Index of the change in value. |
oldValue | object | Value being replaced. |
newValue | object | Value to be used. |
return | void |
public Remove ( |
||
checkButton | The KryptonCheckButton to remove. | |
return | void |
public this ( int index ) : |
||
index | int | Index of entry to return. |
return |