Spread WPF 17
GrapeCity.Windows.SpreadSheet.UI Namespace / SheetView Class / CellValueApplying Event


In This Topic
    CellValueApplying Event (SheetView)
    In This Topic
    Occurs when [cell value applying].
    Syntax
    'Declaration
     
    Public Event CellValueApplying As EventHandler(Of CellValueApplyingEventArgs)
    'Usage
     
    Dim instance As SheetView
    Dim handler As EventHandler(Of CellValueApplyingEventArgs)
     
    AddHandler instance.CellValueApplying, handler
    public event EventHandler<CellValueApplyingEventArgs> CellValueApplying
    Event Data

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

    PropertyDescription
    Gets or sets the cell value.  
    Gets the column index of the cell. (Inherited from GrapeCity.Windows.SpreadSheet.UI.CellEventArgs)
    Gets the row index of the cell. (Inherited from GrapeCity.Windows.SpreadSheet.UI.CellEventArgs)
    See Also