Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / SheetView Class / GetConditionalFormats Method / GetConditionalFormats(Int32,Int32,Boolean) Method
Row index of the first cell
Column index of the first cell
Whether to continue to find cells with conditional formats


In This Topic
    GetConditionalFormats(Int32,Int32,Boolean) Method
    In This Topic
    Gets the conditional formats for the cells starting at the specified row and column.
    Syntax
    'Declaration
     
    
    Public Overloads Function GetConditionalFormats( _
       ByRef row As Integer, _
       ByRef column As Integer, _
       ByVal findNext As Boolean _
    ) As ConditionalFormat()
    'Usage
     
    
    Dim instance As SheetView
    Dim row As Integer
    Dim column As Integer
    Dim findNext As Boolean
    Dim value() As ConditionalFormat
     
    value = instance.GetConditionalFormats(row, column, findNext)
    public ConditionalFormat[] GetConditionalFormats( 
       ref int row,
       ref int column,
       bool findNext
    )

    Parameters

    row
    Row index of the first cell
    column
    Column index of the first cell
    findNext
    Whether to continue to find cells with conditional formats

    Return Value

    ConditionalFormat object containing the conditional formatting
    See Also