CellWatchCollection

CellWatchCollection class

Bu çalışma sayfasındaki ‘izleme penceresinde’ izlenen hücrelerin koleksiyonunu temsil eder.

public class CellWatchCollection : CollectionBase<CellWatch>

yapıcılar

İsimTanım
CellWatchCollection()Default_Constructor

Özellikleri

İsimTanım
Capacity { get; set; }
Count { get; }
Item { get; }Alır ve ayarlarCellWatch index. ile (2 indexers)
Item { get; set; }

yöntemler

İsimTanım
Add(string)ekler
Add(int, int)EklerCellWatch satır ve sütun ile.
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)

Örnekler


[C#]

//Bir Çalışma Kitabı nesnesini başlatma
Workbook workbook = new Workbook();
// İlk Çalışma Sayfasını alın.
Worksheet sheet = workbook.Worksheets[0];
// İzleme penceresine Hücre İzleme Öğesi ekle
sheet.CellWatches.Add("B2");

 [Visual Basic]

'Bir Çalışma Kitabı nesnesini başlatma
Dim workbook As Workbook = New Workbook()
lk Çalışma Sayfasını alın.
Dim sheet as Worksheet = workbook.Worksheets(0);
zleme penceresine Hücre İzleme Öğesi ekleyin
sheet.CellWatches.Add("B2")

Ayrıca bakınız