CellWatchCollection

CellWatchCollection class

Représente la collection de cellules de cette feuille de calcul surveillée dans la “fenêtre de surveillance”.

public class CellWatchCollection : CollectionBase<CellWatch>

Constructeurs

NomLa description
CellWatchCollection()Default_Constructor

Propriétés

NomLa description
Capacity { get; set; }
Count { get; }
Item { get; }Obtient et définitCellWatch par index. (2 indexers)
Item { get; set; }

Méthodes

NomLa description
Add(string)Ajoute
Add(int, int)AjouteCellWatch avec ligne et colonne.
BinarySearch(CellWatch)
BinarySearch(CellWatch, IComparer<CellWatch>)
BinarySearch(int, int, CellWatch, IComparer<CellWatch>)
Clear()
Contains(CellWatch)
CopyTo(CellWatch[])
CopyTo(CellWatch[], int)
CopyTo(int, CellWatch[], int, int)
Exists(Predicate<CellWatch>)
Find(Predicate<CellWatch>)
FindAll(Predicate<CellWatch>)
FindIndex(Predicate<CellWatch>)
FindIndex(int, Predicate<CellWatch>)
FindIndex(int, int, Predicate<CellWatch>)
FindLast(Predicate<CellWatch>)
FindLastIndex(Predicate<CellWatch>)
FindLastIndex(int, Predicate<CellWatch>)
FindLastIndex(int, int, Predicate<CellWatch>)
GetEnumerator()
IndexOf(CellWatch)
IndexOf(CellWatch, int)
IndexOf(CellWatch, int, int)
LastIndexOf(CellWatch)
LastIndexOf(CellWatch, int)
LastIndexOf(CellWatch, int, int)
RemoveAt(int)

Exemples


[C#]

//Instanciation d'un objet Workbook
Workbook workbook = new Workbook();
// Récupère la première feuille de calcul.
Worksheet sheet = workbook.Worksheets[0];
// Ajouter un élément de surveillance de cellule dans la fenêtre de surveillance
sheet.CellWatches.Add("B2");

 [Visual Basic]

'Instanciation d'un objet Workbook
Dim workbook As Workbook = New Workbook()
'Obtenez la première feuille de travail.
Dim sheet as Worksheet = workbook.Worksheets(0);
'Ajouter un élément de surveillance cellulaire dans la fenêtre de surveillance
sheet.CellWatches.Add("B2")

Voir également