ThemeColor

ThemeColor class

Rappresenta un colore del tema.

public class ThemeColor

Costruttori

NomeDescrizione
ThemeColor(ThemeColorType, double)

Proprietà

NomeDescrizione
ColorType { get; set; }Ottiene e imposta il tipo di tema.
Tint { get; set; }Ottiene e imposta il valore della tinta.

Esempi


[C#]

//Creazione di un'istanza di un oggetto cartella di lavoro
Workbook workbook = new Workbook();
Cells cells = workbook.Worksheets[0].Cells;
cells["A1"].PutValue("Hello World");
Style style = cells["A1"].GetStyle();
//Imposta il tipo di colore ThemeColorType.Text2 con il 40% di schiarimento come colore del carattere.
style.Font.ThemeColor = new ThemeColor(ThemeColorType.Text2, 0.4);
style.Pattern = BackgroundType.Solid;
//Imposta il tipo di colore ThemeColorType.Background2 con il 75% di scurimento come colore di primo piano
style.ForegroundThemeColor = new ThemeColor(ThemeColorType.Background2, -0.75);
cells["A1"].SetStyle(style);
//Salvataggio del file Excel
workbook.Save("book1.xlsx");

[Visual Basic]

'Creazione di un'istanza di un oggetto Workbook
Dim workbook As Workbook = New Workbook()
Dim cells As Cells = workbook.Worksheets(0).Cells
cells("A1").PutValue("Hello World")
'Ottieni lo stile cellulare
Dim style As Style = cells("A1").GetStyle()
'Imposta il tipo di colore ThemeColorType.Text2 con il 40% di schiarimento come colore del carattere.
Style.Font.ThemeColor = New ThemeColor(ThemeColorType.Text2, 0.4)
Style.Pattern = BackgroundType.Solid
'Imposta il tipo di colore ThemeColorType.Background2 con il 75% di scurimento come colore di primo piano
style.ForegroundThemeColor = New ThemeColor(ThemeColorType.Background2, -0.75)
'Imposta lo stile della cella
cells("A1").SetStyle(style)
'Salvataggio del file Excel
Workbook.Save("book1.xlsx")

Guarda anche