Articles in this section
Category / Section

How to validate a cell is empty in WinForms GridControl?

1 min read

Validate a cell in grid

To find a cell has a text or empty, it can be achieved by using the HasText property. It will return true if the current cell is having the text else it will return false.

HasText gets a value indicating whether Syncfusion.Windows.Forms.Grid.GridStyleInfo.Text has been initialized for the current object.

HasCellValue gets a value indicating whether Syncfusion.Windows.Forms.Grid.GridStyleInfo.CellValue has been initialized for the current object.

 

C#

GridStyleInfo style = this.gridControl1[RowIndex, ColIndex];
//Check for the current cell is Blank
bool isBlank = !style.HasText;
bool HasValue = style.HasCellValue;

 

VB

Dim style As GridStyleInfo = Me.gridControl1(RowIndex, ColIndex)
'Check for the current cell is Blank
Dim isBlank As Boolean = Not style.HasText
Dim HasValue As Boolean = style.HasCellValue

 

Screenshot

Before validate the cell in grid

After validate the cell in grid

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied