CheckBoxCollection

CheckBoxCollection class

Bir koleksiyonu temsil ederCheckBox çalışma sayfasındaki nesneler.

public class CheckBoxCollection : CollectionBase<CheckBox>

Özellikleri

İsimTanım
Capacity { get; set; }
Count { get; }
Item { get; }CheckBox belirtilen dizindeki öğe.
Item { get; set; }

yöntemler

İsimTanım
Add(int, int, int, int)Koleksiyona bir onay kutusu ekler.
BinarySearch(CheckBox)
BinarySearch(CheckBox, IComparer<CheckBox>)
BinarySearch(int, int, CheckBox, IComparer<CheckBox>)
Clear()
Contains(CheckBox)
CopyTo(CheckBox[])
CopyTo(CheckBox[], int)
CopyTo(int, CheckBox[], int, int)
Exists(Predicate<CheckBox>)
Find(Predicate<CheckBox>)
FindAll(Predicate<CheckBox>)
FindIndex(Predicate<CheckBox>)
FindIndex(int, Predicate<CheckBox>)
FindIndex(int, int, Predicate<CheckBox>)
FindLast(Predicate<CheckBox>)
FindLastIndex(Predicate<CheckBox>)
FindLastIndex(int, Predicate<CheckBox>)
FindLastIndex(int, int, Predicate<CheckBox>)
GetEnumerator()
IndexOf(CheckBox)
IndexOf(CheckBox, int)
IndexOf(CheckBox, int, int)
LastIndexOf(CheckBox)
LastIndexOf(CheckBox, int)
LastIndexOf(CheckBox, int, int)
RemoveAt(int)

Örnekler

[C#]

//Yeni bir Çalışma Kitabı oluştur.
Workbook workbook = new Workbook();

//Çalışma kitabındaki ilk çalışma sayfasını alın.
Worksheet sheet = workbook.Worksheets[0];

int index = sheet.CheckBoxes.Add(15, 15, 20, 100);
CheckBox checkBox = sheet.CheckBoxes[index];
checkBox.Text = "Check Box 1";


[Visual Basic]

'Yeni bir Çalışma Kitabı oluşturun.
Dim workbook As Workbook = new Workbook()

alışma kitabındaki ilk çalışma sayfasını alın.
Dim sheet As Worksheet = workbook.Worksheets(0)

Dim index as integer = sheet.CheckBoxes.Add(15, 15, 20, 100)
Dim checkBox as CheckBox = sheet.CheckBoxes[index];
checkBox.Text = "Check Box 1"

Ayrıca bakınız