Spread Silverlight Documentation
CellTextRendering Event (SheetView)


GrapeCity.Windows.SpreadSheet.UI Namespace > SheetView Class : CellTextRendering Event
Occurs when [cell text rendering].
Syntax
'Declaration
 
Public Event CellTextRendering As System.EventHandler(Of CellTextRenderingEventArgs)
'Usage
 
Dim instance As SheetView
Dim handler As System.EventHandler(Of CellTextRenderingEventArgs)
 
AddHandler instance.CellTextRendering, handler
public event System.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