Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / Worksheet Class / GetStyleName Method / GetStyleName(Int32,Int32) 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.


In This Topic
    GetStyleName(Int32,Int32) Method
    In This Topic
    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 Integer, _
       ByVal column As Integer _
    ) As String
    'Usage
     
    Dim instance As Worksheet
    Dim row As Integer
    Dim column As Integer
    Dim value As String
     
    value = instance.GetStyleName(row, column)
    public string GetStyleName( 
       int row,
       int column
    )

    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.

    Return Value

    Returns the name string for the style.
    See Also