CellWatchCollection
CellWatchCollection class
Stellt die Sammlung von Zellen auf diesem Arbeitsblatt dar, die im „Überwachungsfenster“ überwacht werden.
public class CellWatchCollection : CollectionBase<CellWatch>
Konstrukteure
Eigenschaften
Methoden
Name | Beschreibung |
---|
Add(string) | Fügt hinzu |
Add(int, int) | Fügt hinzuCellWatch mit Zeile und Spalte. |
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) | |
Beispiele
[C#]
//Instanziieren eines Workbook-Objekts
Workbook workbook = new Workbook();
// Holen Sie sich das erste Arbeitsblatt.
Worksheet sheet = workbook.Worksheets[0];
// Cell Watch Item in das Watch-Fenster einfügen
sheet.CellWatches.Add("B2");
[Visual Basic]
'Instanziieren eines Workbook-Objekts
Dim workbook As Workbook = New Workbook()
'Holen Sie sich das erste Arbeitsblatt.
Dim sheet as Worksheet = workbook.Worksheets(0);
'Cell Watch Item zum Überwachungsfenster hinzufügen
sheet.CellWatches.Add("B2")
Siehe auch