Spread Silverlight Documentation
GetStyleName(Int32,Int32,SheetArea) Method
Example 


GrapeCity.Windows.SpreadSheet.Data Namespace > Worksheet Class > GetStyleName Method : GetStyleName(Int32,Int32,SheetArea) Method
The row index of the cell in the model, or -1 to specify an entire column or the default model.
The column index of the cell in the model, or -1 to specify an entire row or the default model.
The sheet area.
Gets the name of the style assigned to a cell, column, row, or default model in the specified sheet area.
Syntax
'Declaration
 
Public Overloads Function GetStyleName( _
   ByVal row As System.Integer, _
   ByVal column As System.Integer, _
   ByVal sheetArea As SheetArea _
) As System.String
'Usage
 
Dim instance As Worksheet
Dim row As System.Integer
Dim column As System.Integer
Dim sheetArea As SheetArea
Dim value As System.String
 
value = instance.GetStyleName(row, column, sheetArea)
public System.string GetStyleName( 
   System.int row,
   System.int column,
   SheetArea sheetArea
)

Parameters

row
The row index of the cell in the model, or -1 to specify an entire column or the default model.
column
The column index of the cell in the model, or -1 to specify an entire row or the default model.
sheetArea
The sheet area.

Return Value

Returns the name string for the style.
Example
This example uses the GetStyleName method.
var style = new GrapeCity.Windows.SpreadSheet.Data.StyleInfo();
style.Background = new SolidColorBrush(Colors.Blue);
style.Name = "CellStyle";
gcSpreadSheet1.Sheets[0].NamedStyles.Add(style);
gcSpreadSheet1.Sheets[0].Cells[0, 0].StyleName = "CellStyle";
listBox1.Items.Add(gcSpreadSheet1.Sheets[0].GetStyleInfo(0, 0).Name.ToString());
listBox1.Items.Add(gcSpreadSheet1.Sheets[0].GetStyleInfo(0,0,GrapeCity.Windows.SpreadSheet.Data.SheetArea.Cells).Background.ToString());
listBox1.Items.Add(gcSpreadSheet1.Sheets[0].GetStyleName(0, 0).ToString());
listBox1.Items.Add(gcSpreadSheet1.Sheets[0].GetStyleName(0, 0, GrapeCity.Windows.SpreadSheet.Data.SheetArea.Cells).ToString());
Dim style As New GrapeCity.Windows.SpreadSheet.Data.StyleInfo()
style.Background = New SolidColorBrush(Colors.Blue)
style.Name = "CellStyle"
GcSpreadSheet1.Sheets(0).NamedStyles.Add(style)
GcSpreadSheet1.Sheets(0).Cells(0, 0).StyleName = "CellStyle"
ListBox1.Items.Add(GcSpreadSheet1.Sheets(0).GetStyleInfo(0, 0).Name.ToString())
ListBox1.Items.Add(GcSpreadSheet1.Sheets(0).GetStyleInfo(0, 0, GrapeCity.Windows.SpreadSheet.Data.SheetArea.Cells).Background.ToString())
ListBox1.Items.Add(GcSpreadSheet1.Sheets(0).GetStyleName(0, 0).ToString())
ListBox1.Items.Add(GcSpreadSheet1.Sheets(0).GetStyleName(0, 0, GrapeCity.Windows.SpreadSheet.Data.SheetArea.Cells).ToString())
See Also

Reference

Worksheet Class
Worksheet Members
Overload List