Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / SheetView Class / GetStyleInfo Method
Row index of the cell
Column index of the cell
Example


In This Topic
    GetStyleInfo Method
    In This Topic
    Gets the composite cell style information for a cell at the specified row and column.
    Syntax
    'Declaration
     
    
    Public Overridable Function GetStyleInfo( _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) As StyleInfo
    'Usage
     
    
    Dim instance As SheetView
    Dim row As Integer
    Dim column As Integer
    Dim value As StyleInfo
     
    value = instance.GetStyleInfo(row, column)
    public virtual StyleInfo GetStyleInfo( 
       int row,
       int column
    )

    Parameters

    row
    Row index of the cell
    column
    Column index of the cell

    Return Value

    StyleInfo object with the style information for the cell
    Remarks

    To set the style for a cell, use the SetStyleInfo method.

    Example
    This example returns the border color, one part of the style information, for the sheet.
    See Also