Spread Windows Forms 15.0
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / Table Class / GetStyleFormat Method
An integer value indicates the row index of cell.
An integer value indicates the column index of cell.


In This Topic
    GetStyleFormat Method (Table)
    In This Topic
    Gets the style format of the specified cell on this table.
    Syntax
    'Declaration
     
    
    Public Function GetStyleFormat( _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) As StyleFormat
    'Usage
     
    
    Dim instance As Table
    Dim row As Integer
    Dim column As Integer
    Dim value As StyleFormat
     
    value = instance.GetStyleFormat(row, column)
    public StyleFormat GetStyleFormat( 
       int row,
       int column
    )

    Parameters

    row
    An integer value indicates the row index of cell.
    column
    An integer value indicates the column index of cell.

    Return Value

    A StyleFormat value represents the style format of the cell.
    See Also