Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the array list that extends from the specified index to the last element.
Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the array list that starts at the specified index and contains the specified number of elements.
Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the array list that extends from the first element to the specified index.
Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the array list that contains the specified number of elements and ends at the specified index.
Searches the entire sorted array list for an element using the default comparer and returns the zero-based index of the element.
Example
fromaspose.cellsimportWorkbook# Instantiating a Workbook objectworkbook=Workbook()# Get the first Worksheet.sheet=workbook.worksheets[0]# Add Cell Watch Item into the watch windowsheet.cell_watches.add("B2")