The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
CBClay Burch Syncfusion Team September 20, 2002 12:39 AM
To get a value at cell(2,3), use
'VB.NET
Dim cellValue as String = Me.GridDataBoundGrid1(2, 3).Text
'or
Dim o as Object = Me.GridDataBoundGrid1(2, 3).CellValue
//C#
string cellValue = me.gridDataBoundGrid1[2,3].Text;
//or
object o = me.gridDataBoundGrid1[2,3].CellValue;
Using an indexer on the grid returns the GridStyleInfo object for that indexed cell. Once you have the style, you can then get the value or the text or any other style property.
To move the currentcell to a particular position, you call the MoveTo method of the CurrentCell property of the grid. So, to move to cell 2,3, use
'VB.NET
Me.GridDataBoundGrid1.CurrentCell.MoveTo(2,3)
//C#
this.gridDataBoundGrid1.CurrentCell.MoveTo(2,3);