Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / Worksheet Class / GetStyleFormat(Int32,Int32,Boolean) Method
An integer value indicates the row index of cell.
An integer value indicates the column index of cell.


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

    Parameters

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

    Return Value

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