Spread WPF 15
GrapeCity.Windows.SpreadSheet.Data Namespace / Cell Class / ForegroundThemeColor Property
Example


In This Topic
    ForegroundThemeColor Property (Cell)
    In This Topic
    Gets or sets the foreground theme color for the cell.
    Syntax
    'Declaration
     
    <DefaultValueAttribute("")>
    Public Property ForegroundThemeColor As String
    'Usage
     
    Dim instance As Cell
    Dim value As String
     
    instance.ForegroundThemeColor = value
     
    value = instance.ForegroundThemeColor
    [DefaultValue("")]
    public string ForegroundThemeColor {get; set;}
    Example
    This example sets the ForegroundThemeColor property.
    gcSpreadSheet1.Sheets[0].Cells[0, 0, 2, 2].BackgroundThemeColor = "Accent 1 40";
    gcSpreadSheet1.Sheets[0].Cells[3,3].BackgroundThemeColor = "Accent 3 40";
    gcSpreadSheet1.Sheets[0].Cells[0,0,2,2].ForegroundThemeColor = "Accent 6 40";
    gcSpreadSheet1.Sheets[0].Cells[0,0,2,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).Cells(0, 0, 2, 2).BackgroundThemeColor = "Accent 1 40"
    GcSpreadSheet1.Sheets(0).Cells(3,3).BackgroundThemeColor = "Accent 3 40"
    GcSpreadSheet1.Sheets(0).Cells(0, 0, 2, 2).ForegroundThemeColor = "Accent 6 40"
    GcSpreadSheet1.Sheets(0).Cells(0, 0, 2, 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