Modifica uno stile esistente
Per applicare le stesse opzioni di formattazione alle celle, crea un nuovo oggetto stile di formattazione. Un oggetto stile di formattazione è una combinazione di caratteristiche di formattazione, come carattere, dimensione del carattere, indentazione, numero, bordo, motivi ecc., denominate e memorizzate come set. Quando applicato, viene applicata tutta la formattazione in quello stile.
Puoi anche utilizzare uno stile esistente, salvarlo con la cartella di lavoro e utilizzarlo per formattare le informazioni con gli stessi attributi.
Quando le celle non sono formattate in modo esplicito, ilNormale style (lo stile predefinito della cartella di lavoro). Microsoft Excel predefinisce diversi stili oltre allo stile Normale, tra cui Virgola, Valuta e Percentuale.
Aspose.Cells consente di modificare uno qualsiasi di questi stili o qualsiasi altro stile definito con gli attributi desiderati.
Utilizzando Microsoft Excel
Per aggiornare uno stile in Microsoft Excel 97-2003:
- SulFormato menu, fare clicStile.
- Selezionare lo stile che si desidera modificare daNome dello stile elenco.
- ClicModificare.
- Selezionare le opzioni di stile desiderate utilizzando le schede nella finestra di dialogo Formato Cells.
- ClicOK.
- SottoLo stile include, specificare le caratteristiche di stile desiderate.
- ClicOK per salvare lo stile e applicarlo all’intervallo selezionato.
Utilizzando Aspose.Cells
Gli esempi seguenti mostrano come utilizzareStile.Aggiornamentometodo.
Creazione e modifica di uno stile
Questo esempio crea aStile oggetto, lo applica a un intervallo di celle e modifica il fileStileoggetto. Le modifiche vengono applicate automaticamente alla cella e all’intervallo a cui è stato applicato lo stile.
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | |
// Create a workbook. | |
Workbook workbook = new Workbook(); | |
// Create a new style object. | |
Style style = workbook.CreateStyle(); | |
// Set the number format. | |
style.Number = 14; | |
// Set the font color to red color. | |
style.Font.Color = System.Drawing.Color.Red; | |
// Name the style. | |
style.Name = "Date1"; | |
// Get the first worksheet cells. | |
Cells cells = workbook.Worksheets[0].Cells; | |
// Specify the style (described above) to A1 cell. | |
cells["A1"].SetStyle(style); | |
// Create a range (B1:D1). | |
Range range = cells.CreateRange("B1", "D1"); | |
// Initialize styleflag object. | |
StyleFlag flag = new StyleFlag(); | |
// Set all formatting attributes on. | |
flag.All = true; | |
// Apply the style (described above)to the range. | |
range.ApplyStyle(style, flag); | |
// Modify the style (described above) and change the font color from red to black. | |
style.Font.Color = System.Drawing.Color.Black; | |
// Done! Since the named style (described above) has been set to a cell and range, | |
// The change would be Reflected(new modification is implemented) to cell(A1) and // Range (B1:D1). | |
style.Update(); | |
// Save the excel file. | |
workbook.Save(dataDir+ "book_styles.out.xls"); |
Modifica di uno stile esistente
Questo esempio utilizza un semplice file Excel modello in cui uno stile denominato Percentuale è già stato applicato a un intervallo. L’esempio:
- ottiene lo stile,
- crea un oggetto di stile e
- modifica la formattazione dello stile.
Le modifiche vengono applicate automaticamente all’intervallo a cui è stato applicato lo stile.
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | |
/* | |
* Create a workbook. | |
* Open a template file. | |
* In the book1.xls file, we have applied Ms Excel's | |
* Named style i.e., "Percent" to the range "A1:C8". | |
*/ | |
Workbook workbook = new Workbook(dataDir+ "book1.xlsx"); | |
// We get the Percent style and create a style object. | |
Style style = workbook.GetNamedStyle("Percent"); | |
// Change the number format to "0.00%". | |
style.Number = 11; | |
// Set the font color. | |
style.Font.Color = System.Drawing.Color.Red; | |
// Update the style. so, the style of range "A1:C8" will be changed too. | |
style.Update(); | |
// Save the excel file. | |
workbook.Save(dataDir+ "book2.out.xlsx"); |