Spread Silverlight Documentation
SetStyleInfo(Int32,Int32,StyleInfo) Method
Example 


GrapeCity.Windows.SpreadSheet.Data Namespace > Worksheet Class > SetStyleInfo Method : SetStyleInfo(Int32,Int32,StyleInfo) Method
The row index.
The column index.
The style.
Sets the style for the specified cell, row, or column.
Syntax
'Declaration
 
Public Overloads Sub SetStyleInfo( _
   ByVal row As System.Integer, _
   ByVal column As System.Integer, _
   ByVal style As StyleInfo _
) 
'Usage
 
Dim instance As Worksheet
Dim row As System.Integer
Dim column As System.Integer
Dim style As StyleInfo
 
instance.SetStyleInfo(row, column, style)
public void SetStyleInfo( 
   System.int row,
   System.int column,
   StyleInfo style
)

Parameters

row
The row index.
column
The column index.
style
The style.
Example
This example uses the SetStyleInfo method.
GrapeCity.Windows.SpreadSheet.Data.StyleInfo aaa = new GrapeCity.Windows.SpreadSheet.Data.StyleInfo();
aaa.Background = new SolidColorBrush(Colors.Aquamarine);
aaa.Name = "aaa";
gcSpreadSheet1.Sheets[0].NamedStyles.Add(aaa);
gcSpreadSheet1.Sheets[0].SetStyleInfo(-1, -1, aaa);        
//or
//gcSpreadSheet1.Sheets[0].DefaultStyle = aaa;
gcSpreadSheet1.Invalidate();    
Dim aaa As New GrapeCity.Windows.SpreadSheet.Data.StyleInfo()
aaa.Background = New SolidColorBrush(Colors.Aquamarine)
aaa.Name = "aaa"
GcSpreadSheet1.Sheets(0).NamedStyles.Add(aaa)
GcSpreadSheet1.Sheets(0).SetStyleInfo(-1, -1, aaa)
'or
'GcSpreadSheet1.Sheets(0).DefaultStyle = aaa
GcSpreadSheet1.Invalidate()
See Also

Reference

Worksheet Class
Worksheet Members
Overload List