CheckBoxCollection

CheckBoxCollection class

Rappresenta una raccolta diCheckBox oggetti in un foglio di lavoro.

public class CheckBoxCollection : CollectionBase<CheckBox>

Proprietà

NomeDescrizione
Capacity { get; set; }
Count { get; }
Item { get; }Ottiene ilCheckBox elemento all’indice specificato.
Item { get; set; }

Metodi

NomeDescrizione
Add(int, int, int, int)Aggiunge una casella di controllo alla raccolta.
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)

Esempi

[C#]

//Crea una nuova cartella di lavoro.
Workbook workbook = new Workbook();

//Ottieni il primo foglio di lavoro nella cartella di lavoro.
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]

'Crea una nuova cartella di lavoro.
Dim workbook As Workbook = new Workbook()

'Ottieni il primo foglio di lavoro nella cartella di lavoro.
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"

Guarda anche