[]
Represents a collection of C1RadioButtons.
[ListBindable(false)]
public class RadioButtonCollection : CollectionBase, IList, ICollection, IEnumerable
Name | Description |
---|---|
this[int] | Gets or sets the C1RadioButton at the specified position in the collection. |
this[string] | Gets the first C1RadioButton with the specified name in the collection. |
Owner | Gets the owner C1TaskDialog. |
Name | Description |
---|---|
Add(C1RadioButton) | Adds the specified C1RadioButton to the collection. |
AddRange(C1RadioButton[]) | Adds a group of C1RadioButton objects to the end of the collection. |
Contains(C1RadioButton) | Determines whether this collection contains the specified C1RadioButton. |
Contains(string) | Determines whether this collection contains an C1RadioButton with the specified name. |
IndexOf(C1RadioButton) | Determines the index of a specific C1RadioButton in the collection. |
IndexOf(string) | Determines index of the first C1RadioButton with the specified name in the collection. |
Insert(int, C1RadioButton) | Inserts the specified C1RadioButton into this collection at the given index. |
OnClear() | Performs additional custom processes when clearing the contents of the RadioButtonCollection instance. |
OnClearComplete() | Performs additional custom processes after clearing the contents of the RadioButtonCollection instance. |
OnInsertComplete(int, object) | Performs additional custom processes after inserting a C1RadioButton into the RadioButtonCollection instance. |
OnRemoveComplete(int, object) | Performs additional custom processes after removing a C1RadioButton from the RadioButtonCollection instance. |
OnSetComplete(int, object, object) | Performs additional custom processes after setting a C1RadioButton in the RadioButtonCollection instance. |
OnValidate(object) | Checks whather the type of the value argument is allowable for this collection. |
Remove(C1RadioButton) | Removes the specified C1RadioButton from the collection. |
Remove(string) | Removes the first occurrence of the C1RadioButton with the specified name from the collection. |