ThemeColor

ThemeColor class

Representerar en temafärg.

public class ThemeColor

Konstruktörer

namnBeskrivning
ThemeColor(ThemeColorType, double)

Egenskaper

namnBeskrivning
ColorType { get; set; }Hämtar och ställer in tematypen.
Tint { get; set; }Hämtar och ställer in färgtonsvärdet.

Exempel


[C#]

//Instantiering av ett arbetsboksobjekt
Workbook workbook = new Workbook();
Cells cells = workbook.Worksheets[0].Cells;
cells["A1"].PutValue("Hello World");
Style style = cells["A1"].GetStyle();
//Ange ThemeColorType.Text2 färgtyp med 40 % ljusare som teckensnittsfärg.
style.Font.ThemeColor = new ThemeColor(ThemeColorType.Text2, 0.4);
style.Pattern = BackgroundType.Solid;
//Ange ThemeColorType.Background2 färgtyp med 75 % mörkare som förgrundsfärg
style.ForegroundThemeColor = new ThemeColor(ThemeColorType.Background2, -0.75);
cells["A1"].SetStyle(style);
//Spara Excel-filen
workbook.Save("book1.xlsx");

[Visual Basic]

'Instantiera ett arbetsboksobjekt
Dim workbook As Workbook = New Workbook()
Dim cells As Cells = workbook.Worksheets(0).Cells
cells("A1").PutValue("Hello World")
' cellstilen
Dim style As Style = cells("A1").GetStyle()
'Ställ in ThemeColorType.Text2 färgtyp med 40 % ljusare som teckensnittsfärg.
Style.Font.ThemeColor = New ThemeColor(ThemeColorType.Text2, 0.4)
Style.Pattern = BackgroundType.Solid
'Ställ in ThemeColorType.Background2 färgtyp med 75 % mörkare som förgrundsfärg
style.ForegroundThemeColor = New ThemeColor(ThemeColorType.Background2, -0.75)
'Ställ in cellstilen
cells("A1").SetStyle(style)
'Sparar Excel-filen
Workbook.Save("book1.xlsx")

Se även