Telerik - RadGridView CellDoubleClick

This short code example shows how to code the WinForms RadGridView CellDoubleClick event

The main thing that I have trouble remembering is how to get a reference to the fields; this helps me remember.

Private Sub RadGridDragAndDrop1_CellDoubleClick(sender As Object, e As Telerik.WinControls.UI.GridViewCellEventArgs) Handles RadGridDragAndDrop1.CellDoubleClick
    Try
        If Not TypeOf (e.Row) Is Telerik.WinControls.UI.GridViewDataRowInfo Then
            Exit Sub
        End If
 
        'get a reference to a cell in the grid
        Dim intLoadID = e.Row.Cells("lRowID").Value
 
    Catch ex As Exception
        ErrorHandler.globalErrorHandler(ex, True)
    End Try
 
End Sub
  

 

 



RealWorldCode gives developers practical, real‑world solutions with clean, working code — no fluff, no theory, just answers.
Links
Home
Knowledge Areas
Sitemap
Contact
Et cetera
Privacy Policy
Terms and Conditions
Cookie Preferences