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)
أنظر أيضا
- مساحة الاسم Aspose.Cells.GridWeb
- المجسم Aspose.Cells.GridWeb