FindOptions classe
FindOptions classe
Rappresenta le opzioni di ricerca.
Il tipo FindOptions espone i seguenti membri:
Costruttori
Costruttore | Descrizione |
---|---|
init | Costruisce una nuova istanza di FindOptions |
Proprietà
Proprietà | Descrizione |
---|---|
is_case_sensitive | Indica se la stringa cercata fa distinzione tra maiuscole e minuscole. |
case_sensitive | Indica se la stringa cercata fa distinzione tra maiuscole e minuscole. |
look_at_type | Guarda il tipo. |
is_range_set | Indica se l’intervallo cercato è impostato. |
search_next | Ordine di ricerca. Vero: cerca dopo. Falso: cerca precedente. |
search_backward | Se cercare all’indietro le celle. |
seach_order_by_rows | Indica se l’ordine di ricerca è per righe o colonne. |
look_in_type | Cerca nel tipo. |
regex_key | Indica se la chiave cercata è regex. Se vero, la chiave cercata verrà presa come regex e analizzata. Altrimenti la chiave verrà analizzata secondo le regole di ms Excel. |
value_type_sensitive | Indica se il tipo di valore della cella cercata deve essere lo stesso della chiave cercata. |
style | Il formato da cercare. |
convert_numeric_data | Ottiene o imposta un valore che indica se convertire il valore della stringa cercata in dati numerici. |
Metodi
Metodo | Descrizione |
---|---|
get_range | Ottiene e imposta l’intervallo cercato. |
set_range | Imposta l’intervallo cercato. |
Esempio
from aspose.cells import CellArea, FindOptions, LookInType, Workbook
# Instantiate the workbook object
workbook = Workbook("book1.xls")
# Get Cells collection
cells = workbook.worksheets[0].cells
# Instantiate FindOptions Object
findOptions = FindOptions()
# Create a Cells Area
ca = CellArea()
ca.start_row = 8
ca.start_column = 2
ca.end_row = 17
ca.end_column = 13
# Set cells area for find options
findOptions.set_range(ca)
# Set searching properties
findOptions.search_backward = False
findOptions.seach_order_by_rows = True
findOptions.look_in_type = LookInType.VALUES
# Find the cell with 0 value
cell = cells.find(0, None, findOptions)
Guarda anche
- modulo
aspose.cells