Spread Silverlight Documentation
ForegroundThemeColor Property (Row)
Example 


GrapeCity.Windows.SpreadSheet.Data Namespace > Row Class : ForegroundThemeColor Property
Gets or sets the foreground theme color for a row.
Syntax
'Declaration
 
<System.ComponentModel.DefaultValueAttribute()>
Public Property ForegroundThemeColor As System.String
'Usage
 
Dim instance As Row
Dim value As System.String
 
instance.ForegroundThemeColor = value
 
value = instance.ForegroundThemeColor
[System.ComponentModel.DefaultValue()]
public System.string ForegroundThemeColor {get; set;}

Property Value

The string that refers to a theme color for cells in this row. The default value is null, which means that no foreground color is set.
Example
This example sets the ForegroundThemeColor property.
gcSpreadSheet1.Sheets[0].Rows[1].BackgroundThemeColor = "Accent 1 40";
gcSpreadSheet1.Sheets[0].Columns[2].BackgroundThemeColor = "Accent 3 40";
gcSpreadSheet1.Sheets[0].Rows[1].ForegroundThemeColor = "Accent 6 40";
gcSpreadSheet1.Sheets[0].Rows[1].FontTheme = "Heading";
gcSpreadSheet1.Sheets[0].Columns[2].ForegroundThemeColor = "Accent 6 40";
gcSpreadSheet1.Sheets[0].Columns[2].FontTheme = "Headings";         
gcSpreadSheet1.Invalidate();           

private void button1_Click(object sender, RoutedEventArgs e)
{
gcSpreadSheet1.Sheets[0].Cells[0, 0, 2, 2].Text = "Test";
gcSpreadSheet1.Invalidate();
}
GcSpreadSheet1.Sheets(0).Rows(1).BackgroundThemeColor = "Accent 1 40"
GcSpreadSheet1.Sheets(0).Columns(2).BackgroundThemeColor = "Accent 3 40"
GcSpreadSheet1.Sheets(0).Rows(1).ForegroundThemeColor = "Accent 6 40"
GcSpreadSheet1.Sheets(0).Rows(1).FontTheme = "Heading"
GcSpreadSheet1.Sheets(0).Columns(2).ForegroundThemeColor = "Accent 6 40"
GcSpreadSheet1.Sheets(0).Columns(2).FontTheme = "Headings"         
GcSpreadSheet1.Invalidate()    

Private Sub Button1_Click(sender As System.Object, e As System.Windows.RoutedEventArgs) Handles Button1.Click
GcSpreadSheet1.Sheets(0).Cells(0, 0, 2, 2).Text = "Test"
GcSpreadSheet1.Invalidate()
End Sub
See Also

Reference

Row Class
Row Members