DefaultStyle
Workbook.DefaultStyle property
Ottiene o imposta il valore predefinitoStyle
oggetto della cartella di lavoro.
public Style DefaultStyle { get; set; }
Osservazioni
La proprietà DefaultStyle è utile per implementare uno stile per l’intera cartella di lavoro.
Esempi
Il codice seguente crea e crea un’istanza di una nuova cartella di lavoro e imposta un valore predefinitoStyle
ad esso.
[C#]
Workbook workbook = new Workbook();
Style defaultStyle = workbook.DefaultStyle;
defaultStyle.Font.Name = "Tahoma";
workbook.DefaultStyle = defaultStyle;
[Visual Basic]
Dim workbook as Workbook = new Workbook()
Dim defaultStyle as Style = workbook.DefaultStyle
defaultStyle.Font.Name = "Tahoma"
workbook.DefaultStyle = defaultStyle
Guarda anche
- class Style
- class Workbook
- spazio dei nomi Aspose.Cells
- assemblea Aspose.Cells