FontSetting classe
FontSetting classe
Rappresenta un intervallo di caratteri all’interno del testo della cella.
Il tipo FontSetting espone i seguenti membri:
Costruttori
Costruttore | Descrizione |
---|
init | |
Proprietà
Proprietà | Descrizione |
---|
type | Ottiene il tipo di nodo di testo. |
start_index | Ottiene l’indice iniziale dei caratteri. |
length | Ottiene la lunghezza dei caratteri. |
font | Restituisce il carattere di questo oggetto. |
text_options | Restituisce le opzioni del testo. |
Metodi
Esempio
from aspose.cells import Workbook
from aspose.pydrawing import Color
# Instantiating a Workbook object
workbook = Workbook()
# Adding a new worksheet to the Excel object
workbook.worksheets.add()
# Obtaining the reference of the newly added worksheet by passing its sheet index
worksheet = workbook.worksheets[0]
# Accessing the "A1" cell from the worksheet
cell = worksheet.cells.get("A1")
# Adding some value to the "A1" cell
cell.put_value("Visit Aspose!")
# getting charactor
charactor = cell.characters(6, 7)
# Setting the font of selected characters to bold
charactor.font.is_bold = True
# Setting the font color of selected characters to blue
charactor.font.color = Color.blue
# Saving the Excel file
workbook.save("book1.xls")
Guarda anche