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.
It seems that this event, CellDrawn, addresses my earlier question of knowing when the grid has actually finished using the value I set in the GridStyleInfo during QueryCellInfo.
Therefore I could use this event to release a lock on the data that I assigned to CellValue/Text.
Can anyone confirm this?
ADAdministrator Syncfusion Team March 18, 2004 03:54 PM UTC
The problem is that QueryCellInfo is called for other things than drawing a cell.
Anytime the grid needs any style information about a cell, QueryCellInfo is fired. For example, if you move the mouuse over cells in the grid, QueryCellInfo is fired so the grid can do things like hittesting that may vary from cell to cell. And these do not eventually end up through CellDrawn.