GrapeCity.Xaml.SpreadSheet.UI
CellTextRendering Event (GcSpreadSheet)
Example 


GrapeCity.Xaml.SpreadSheet.UI Namespace > GcSpreadSheet Class : CellTextRendering Event
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.Xaml.SpreadSheet.UI.CellEventArgs)
Gets the row index of the cell. (Inherited from GrapeCity.Xaml.SpreadSheet.UI.CellEventArgs)
Example
This example uses the CellTextRendering event.
private void button1_Click_1(object sender, RoutedEventArgs e)
        {
            GcSpreadSheet1.ActiveSheet.Cells[1, 2].Value = "Testing";
        }

private void GcSpreadSheet1_CellTextRendering(object sender, GrapeCity.Xaml.SpreadSheet.UI.CellTextRenderingEventArgs e)
        {
            TextBox1.Text = e.Column.ToString();
        }
Private Sub button1_Click(sender As Object, e As RoutedEventArgs) Handles button1.Click
        GcSpreadSheet1.ActiveSheet.Cells(1, 2).Value = "Testing"       
    End Sub
  
Private Sub GcSpreadSheet1_CellTextRendering(sender As Object, e As GrapeCity.Xaml.SpreadSheet.UI.CellTextRenderingEventArgs) Handles GcSpreadSheet1.CellTextRendering
        TextBox1.Text = e.Column.ToString()
    End Sub
See Also