Modifica uno stile esistente

Utilizzando Microsoft Excel

Per aggiornare uno stile in Microsoft Excel 97-2003:

  1. SulFormato menu, fare clicStile.
  2. Selezionare lo stile che si desidera modificare daNome dello stile elenco.
  3. ClicModificare.
  4. Selezionare le opzioni di stile desiderate utilizzando le schede nella finestra di dialogo Formato Cells.
  5. ClicOK.
  6. SottoLo stile include, specificare le caratteristiche di stile desiderate.
  7. 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:

  1. ottiene lo stile,
  2. crea un oggetto di stile e
  3. 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");