To get focusedrow cell value using Devexpress XtraGrid in C# and VB.NET you can use one of the following ways.

Samples

Sample C#

string value = gridView1.GetFocusedRowCellValue("ColumnName").ToString();
string value = gridView1.GetDataRow(e.FocusedRowHandle)["ColumnName"].ToString();
string value = (gridView1.GetFocusedRow() as DataRowView).Row["ColumnName"].ToString();
string value = gridView1.GetFocusedDataRow()["ColumnName"].ToString();

Sample VB.NET

Dim value as String = gridView1.GetFocusedRowCellValue("ColumnName").ToString()
Dim value as String = gridView1.GetDataRow(e.FocusedRowHandle)("ColumnName").ToString()
Dim value as String = TryCast(gridView1.GetFocusedRow(), DataRowView).Row("ColumnName").ToString()
Dim value as String = gridView1.GetFocusedDataRow()("ColumnName").ToString()

 

Compatibility: working .NET 2.0 working .NET 3.0 not tested .NET 3.5 not working .NET 4.0 not working .NET 4.5not working .NET 4.6

If you have any questions or suggestions feel free to rate this snippet, post a comment or Contact Us via Email.

Related links:

 

4 thought on “How to get focusedrow cell value using Devexpress XtraGrid in C# and VB.NET”

Leave a Reply