Spread Silverlight Documentation
Accent1 Property
Example 


Gets or sets the accent1.
Syntax
'Declaration
 
Public Property Accent1 As System.Windows.Media.Color
'Usage
 
Dim instance As ThemeColor
Dim value As System.Windows.Media.Color
 
instance.Accent1 = value
 
value = instance.Accent1
public System.Windows.Media.Color Accent1 {get; set;}

Property Value

The accent1.
Example
This example sets the Accent1 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"
Requirements

Target Platforms: Windows 7, Windows 8 Desktop, Windows Vista SP1 or later, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

Reference

ThemeColor Class
ThemeColor Members

 

 


Copyright © GrapeCity, inc. All rights reserved.