CustomCommandButtonCollection

CustomCommandButtonCollection class

代表CustomCommandButton的集合。

public class CustomCommandButtonCollection : IList

特性

姓名描述
Count { get; }获取集合的计数。
IsFixedSize { get; }仅供内部使用。
IsReadOnly { get; }仅供内部使用。
IsSynchronized { get; }仅供内部使用。
Item { get; set; }获取索引处的自定义命令按钮对象。
SyncRoot { get; }仅供内部使用。

方法

姓名描述
Add(object)将自定义命令按钮对象添加到集合中。
Clear()清除集合。
Contains(object)表示自定义命令按钮对象是否在集合中。
CopyTo(Array, int)将集合复制到数组中。
GetEnumerator()获取集合的 IEnumerator 对象。
IndexOf(object)获取按钮的索引。
Insert(int, object)在索引处插入一个按钮。
Remove(object)移除自定义命令按钮对象。
RemoveAt(int)在索引处删除。

例子

[C#]
CustomCommandButton button = new CustomCommandButton();
button.Command = "MyCommand";
button.ImageUrl = "images/button1.gif";
GridWeb1.CustomCommandButtons.Add(button);
[VB]
Dim button As CustomCommandButton =  New CustomCommandButton()
button.Command = "MyCommand"
button.ImageUrl = "images/button1.gif"
GridWeb1.CustomCommandButtons.Add(button)

也可以看看