Class CellWatchCollection

Class CellWatchCollection

Namespace: Aspose.Cells
Assembly: Aspose.Cells.dll (25.2.0)

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

public class CellWatchCollection : CollectionBase<cellwatch>, IList<cellwatch>, ICollection<cellwatch>, IEnumerable<cellwatch>, ICollection, IEnumerable

Miras

objectCollectionBase<cellwatch>CellWatchCollection

Uygulamalar

IList<cellwatch>, ICollection<cellwatch>, IEnumerable<cellwatch>, ICollection, IEnumerable

Miras Alınan Üyeler

CollectionBase<cellwatch>.BinarySearch(CellWatch), CollectionBase<cellwatch>.BinarySearch(CellWatch, IComparer<cellwatch>), CollectionBase<cellwatch>.BinarySearch(int, int, CellWatch, IComparer<cellwatch>), CollectionBase<cellwatch>.Contains(CellWatch), CollectionBase<cellwatch>.CopyTo(CellWatch[]), CollectionBase<cellwatch>.CopyTo(CellWatch[], int), CollectionBase<cellwatch>.CopyTo(int, CellWatch[], int, int), CollectionBase<cellwatch>.Exists(Predicate<cellwatch>), CollectionBase<cellwatch>.Find(Predicate<cellwatch>), CollectionBase<cellwatch>.FindAll(Predicate<cellwatch>), CollectionBase<cellwatch>.FindIndex(Predicate<cellwatch>), CollectionBase<cellwatch>.FindIndex(int, Predicate<cellwatch>), CollectionBase<cellwatch>.FindIndex(int, int, Predicate<cellwatch>), CollectionBase<cellwatch>.FindLast(Predicate<cellwatch>), CollectionBase<cellwatch>.FindLastIndex(Predicate<cellwatch>), CollectionBase<cellwatch>.FindLastIndex(int, Predicate<cellwatch>), CollectionBase<cellwatch>.FindLastIndex(int, int, Predicate<cellwatch>), CollectionBase<cellwatch>.IndexOf(CellWatch), CollectionBase<cellwatch>.IndexOf(CellWatch, int), CollectionBase<cellwatch>.IndexOf(CellWatch, int, int), CollectionBase<cellwatch>.LastIndexOf(CellWatch), CollectionBase<cellwatch>.LastIndexOf(CellWatch, int), CollectionBase<cellwatch>.LastIndexOf(CellWatch, int, int), CollectionBase<cellwatch>.GetEnumerator(), CollectionBase<cellwatch>.Clear(), CollectionBase<cellwatch>.RemoveAt(int), CollectionBase<cellwatch>.OnClearComplete(), CollectionBase<cellwatch>.OnClear(), CollectionBase<cellwatch>.Capacity, CollectionBase<cellwatch>.Count, CollectionBase<cellwatch>.InnerList, CollectionBase<cellwatch>.this[int], object.GetType(), object.MemberwiseClone(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()

Örnekler

//Bir Workbook nesnesi oluşturma
Workbook workbook = new Workbook();
// İlk Çalışma Sayfasını al.
Worksheet sheet = workbook.Worksheets[0];
// İzleme penceresine Hücre İzleme Öğesi ekleyin
sheet.CellWatches.Add("B2");
'Bir Workbook nesnesi oluşturma
Dim workbook As Workbook = New Workbook()
'İlk Çalışma Sayfasını al.
Dim sheet as Worksheet = workbook.Worksheets(0);
'İzleme penceresine Hücre İzleme Öğesi ekleyin
sheet.CellWatches.Add("B2")

Yapıcılar

CellWatchCollection()

public CellWatchCollection()

Özellikler

this[int]

İndeks ile Aspose.Cells.CellWatch alır ve ayarlar.

public CellWatch this[int index] { get; }

Özellik Değeri

CellWatch

this[string]

Hücrenin adı ile Aspose.Cells.CellWatch alır ve ayarlar.

public CellWatch this[string cellName] { get; }

Özellik Değeri

CellWatch

Yöntemler

Add(int, int)

Satır ve sütun ile Aspose.Cells.CellWatch ekler.

public int Add(int row, int column)

Parametreler

row int

Satır indeksi.

column int

Sütun indeksi.

Dönüş

int

Bu öğenin koleksiyondaki konumunu döndürür.

Add(string)

Hücrenin adı ile Aspose.Cells.CellWatch ekler.

public int Add(string cellName)

Parametreler

cellName string

Hücrenin adı.

Dönüş

int

 Türkçe