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


In This Topic
    CellTextRendering Event (GcSpreadSheet)
    In This Topic
    Occurs when the cell text is rendering.
    Syntax
    'Declaration
     
    Public Event CellTextRendering As EventHandler(Of CellTextRenderingEventArgs)
    'Usage
     
    Dim instance As GcSpreadSheet
    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