[]
Represents the button text collection.
[TypeConverter(typeof(ButtonTextCollectionConverter))]
public class ButtonTextCollection : BaseKeyCollection, ICollection, IEnumerable
<TypeConverter(GetType(ButtonTextCollectionConverter))>
Public Class ButtonTextCollection
Inherits BaseKeyCollection
Implements ICollection, IEnumerable
Name | Description |
---|---|
ButtonTextCollection() | The constructor initializes a new instance of the ButtonTextCollection class. |
ButtonTextCollection(string[], string[]) | The constructor initializes a new instance of the ButtonTextCollection class. |
Name | Description |
---|---|
this[int] | Gets the value according to the special index. |
this[string] | Gets the value according to the special key. |
Name | Description |
---|---|
Add(string, string) | Add an item to the ButtonTextCollection. |
AddRange(string[], string[]) | Add items to the ButtonTextCollection. |
Clear() | Clear all items in the ButtonTextCollection. |
CopyTo(string[]) | Copies the items of the ButtonTextCollection to a compatible one-dimensional array of type string, starting from the first index of the target array. |
CopyTo(string[], int) | Copies the items of the ButtonTextCollection to a compatible one-dimensional array of type string, starting at the specified zero-based index of the target array. |
Insert(int, string, string) | Inserts an item to the ButtonTextCollection. |
IsKeyValid(string) | Checks whether the key is valid. |
Remove(string) | Remove the item of the ButtonTextCollection. |
RemoveAt(int) | Remove the item according to the special index. |