Class CellWatchCollection

Class CellWatchCollection

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

Representerar samlingen av celler på detta kalkylblad som övervakas i ‘övervakningsfönstret’.

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

Arv

objectCollectionBase<cellwatch>CellWatchCollection

Implementerar

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

Ärvt Medlemmar

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()

Exempel

//Instansiera ett Workbook-objekt
Workbook workbook = new Workbook();
// Hämta det första kalkylbladet.
Worksheet sheet = workbook.Worksheets[0];
// Lägg till Cell Watch Item i övervakningsfönstret
sheet.CellWatches.Add("B2");
'Instansiera ett Workbook-objekt
Dim workbook As Workbook = New Workbook()
'Hämta det första kalkylbladet.
Dim sheet as Worksheet = workbook.Worksheets(0);
'Lägg till Cell Watch Item i övervakningsfönstret
sheet.CellWatches.Add("B2")

Konstruktörer

CellWatchCollection()

public CellWatchCollection()

Egenskaper

this[int]

Hämtar och sätter Aspose.Cells.CellWatch efter index.

public CellWatch this[int index] { get; }

Egenskapsvärde

CellWatch

this[string]

Hämtar och sätter Aspose.Cells.CellWatch efter cellens namn.

public CellWatch this[string cellName] { get; }

Egenskapsvärde

CellWatch

Metoder

Add(int, int)

Lägg till Aspose.Cells.CellWatch med rad och kolumn.

public int Add(int row, int column)

Parametrar

row int

Radindex.

column int

Kolumnindex.

Returer

int

Returnerar positionen för detta objekt i samlingen.

Add(string)

Lägg till Aspose.Cells.CellWatch med cellens namn.

public int Add(string cellName)

Parametrar

cellName string

Namnet på cellen.

Returer

int

 Svenska