GrapeCity.Xaml.SpreadSheet.UI
CellTextRendering Event (SheetView)


GrapeCity.Xaml.SpreadSheet.UI Namespace > SheetView Class : CellTextRendering Event
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.Xaml.SpreadSheet.UI.CellEventArgs)
Gets the row index of the cell. (Inherited from GrapeCity.Xaml.SpreadSheet.UI.CellEventArgs)
See Also