Metodo intersect
intersect
Restituisce un oggetto Range
che rappresenta l’intersezione rettangolare di due intervalli.
ritorna
Restituisce un oggetto Range
def intersect(self, range):
...
Parametro | Tipo | Descrizione |
---|---|---|
range | Range | L’intervallo che si interseca. |
Osservazioni
Se i due intervalli non sono intersecati, restituisce null.
Esempio
from aspose.cells import Workbook
# Instantiating a Workbook object
workbook = Workbook()
# Get the first Worksheet Cells.
cells = workbook.worksheets[0].cells
range1 = cells.create_range("A1:A5")
range2 = cells.create_range("A3:A10")
# Get intersected range of the two ranges.
intersectRange = range1.intersect(range2)
# Save the Excel file
workbook.save("book1.xlsm")
Guarda anche
- modulo
aspose.cells
- classe
Range