AD
Administrator
Syncfusion Team
August 18, 2004 03:42 PM UTC
You can try calling grid.RefreshRange to only refresh the rows that need it.
Or, you can call grid.Invalidate and pass in a specific rectangle that needs updating.
Calling grid.Refresh also calls grid.ResetVolatileData and grid.UpdateScrollBars in addition to grid.Update. But if you know the exact row that needs updating it will be faster to call grid.RefreshRange to avoid redrawing more than you need to.