Articles in this section
Category / Section

How to validate a cell is empty in WinForms GridControl?

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 in the WinForms GridControl.


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.

GridStyleInfo style = this.gridControl1[RowIndex, ColIndex];

//Check for the current cell is Blank
bool isBlank = !style.HasText;
bool HasValue = style.HasCellValue;
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

The screenshot below illustrates the cell validation.


Before validate the cell in grid


After validate the cell in grid

 

Conclusion

I hope you enjoyed learning how to validate a cell is empty in WinForms GridControl.


You can refer to our WinForms GridControl feature tour page to know about its other groundbreaking feature representations and WinForms GridControl documentation, and how to quickly get started for configuration specifications.


For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.


If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!

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