'Declaration Public Function New( _ ByVal name As System.String _ )
'Usage Dim name As System.String Dim instance As New SpreadTheme(name)
public SpreadTheme( System.string name )
Parameters
- name
- The name of the spread theme.
'Declaration Public Function New( _ ByVal name As System.String _ )
'Usage Dim name As System.String Dim instance As New SpreadTheme(name)
public SpreadTheme( System.string name )
SpreadTheme customTheme = new SpreadTheme("customTheme1"); customTheme.Colors.Accent1 = Colors.Red; customTheme.Colors.Accent2 = Colors.Green; gcSpreadSheet1.Themes.Add(customTheme); gcSpreadSheet1.CurrentThemeName = "customTheme1"; gcSpreadSheet1.Sheets[0].Cells[1, 1].BackgroundThemeColor = "Accent 1 50";
Dim customTheme As New SpreadTheme("customTheme1") customTheme.Colors.Accent1 = Colors.Red customTheme.Colors.Accent2 = Colors.Green GcSpreadSheet1.Themes.Add(customTheme) GcSpreadSheet1.CurrentThemeName = "customTheme1" GcSpreadSheet1.Sheets(0).Cells(1, 1).BackgroundThemeColor = "Accent 1 50"