Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / ConditionalFormattingModel Class / Changed Event


In This Topic
    Changed Event (ConditionalFormattingModel)
    In This Topic
    Occurs when the user makes a change to the model that affects the conditional formatting of cells of the sheet.
    Syntax
    'Declaration
     
    
    Public Event Changed As EventHandler(Of ConditionalFormattingModelEventArgs)
    'Usage
     
    
    Dim instance As ConditionalFormattingModel
    Dim handler As EventHandler(Of ConditionalFormattingModelEventArgs)
     
    AddHandler instance.Changed, handler
    Event Data

    The event handler receives an argument of type ConditionalFormattingModelEventArgs containing data related to this event. The following ConditionalFormattingModelEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets the column index.  
    Gets the number of columns.  
    Gets the conditional formatting.  
    Gets the row index.  
    Gets the number of rows.  
    Gets the target column index.  
    Gets the target row index.  
    Gets the type of Change event.  
    See Also