'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.
Property | Description |
---|---|
CellText | Gets or sets the cell text. |
Column | Gets the column index of the cell. (Inherited from GrapeCity.Windows.SpreadSheet.UI.CellEventArgs) |
Row | Gets the row index of the cell. (Inherited from GrapeCity.Windows.SpreadSheet.UI.CellEventArgs) |
See Also