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


In This Topic
    CellTextRendering Event (SheetView)
    In This Topic
    Occurs when [cell text rendering].
    Syntax
    'Declaration
     
    Public Event CellTextRendering As EventHandler(Of CellTextRenderingEventArgs)
    'Usage
     
    Dim instance As SheetView
    Dim handler As EventHandler(Of CellTextRenderingEventArgs)
     
    AddHandler instance.CellTextRendering, handler
    public event EventHandler<CellTextRenderingEventArgs> CellTextRendering
    Event Data

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

    PropertyDescription
    Gets or sets the cell text.  
    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