Spread Silverlight Documentation
ActualBackground Property
Example 


GrapeCity.Windows.SpreadSheet.Data Namespace > Cell Class : ActualBackground Property
Gets an object that describes the displayed background of a cell.
Syntax
'Declaration
 
Public ReadOnly Property ActualBackground As System.Windows.Media.Brush
'Usage
 
Dim instance As Cell
Dim value As System.Windows.Media.Brush
 
value = instance.ActualBackground
public System.Windows.Media.Brush ActualBackground {get;}

Property Value

A System.Windows.Media.Brush object that specifies the actual background for the cell.
Remarks
The style is composed of cell, row, column, sheet, conditional format, and alternating rows.
Example
This example uses the ActualBackground property.
GrapeCity.Windows.SpreadSheet.Data.Cell acell;
acell = gcSpreadSheet1.Sheets[0].Cells[0, 0];
acell.Background = new System.Windows.Media.SolidColorBrush(Color.FromArgb(200, 180, 50, 25));
acell.Focusable = true;
acell.ShrinkToFit = true;
acell.Foreground = new System.Windows.Media.SolidColorBrush(Color.FromArgb(255, 215, 100, 125));
listBox1.Items.Add(acell.ActualBackground.ToString());
listBox1.Items.Add(acell.ActualForeground.ToString());
listBox1.Items.Add(acell.ActualFocusable.ToString());
listBox1.Items.Add(acell.ActualShrinkToFit.ToString());
gcSpreadSheet1.Invalidate();
Dim acell As GrapeCity.Windows.SpreadSheet.Data.Cell
acell = GcSpreadSheet1.Sheets(0).Cells(0, 0)
acell.Background = New System.Windows.Media.SolidColorBrush(Color.FromArgb(200, 180, 50, 25))
acell.Focusable = True
acell.ShrinkToFit = True
acell.Foreground = New System.Windows.Media.SolidColorBrush(Color.FromArgb(255, 215, 100, 125))
ListBox1.Items.Add(acell.ActualBackground.ToString())
ListBox1.Items.Add(acell.ActualForeground.ToString())
ListBox1.Items.Add(acell.ActualFocusable.ToString())
ListBox1.Items.Add(acell.ActualShrinkToFit.ToString())
GcSpreadSheet1.Invalidate()
See Also

Reference

Cell Class
Cell Members