Spread Silverlight Documentation
Accent2 Property
Example 


GrapeCity.Windows.SpreadSheet.Data Namespace > ThemeColor Class : Accent2 Property
Gets or sets the accent2.
Syntax
'Declaration
 
Public Property Accent2 As System.Windows.Media.Color
'Usage
 
Dim instance As ThemeColor
Dim value As System.Windows.Media.Color
 
instance.Accent2 = value
 
value = instance.Accent2
public System.Windows.Media.Color Accent2 {get; set;}

Property Value

The accent2.
Example
This example sets the Accent2 property.
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"
See Also

Reference

ThemeColor Class
ThemeColor Members