We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
Unfortunately, activation email could not send to your email. Please try again.
Syncfusion Feedback

How to pre-select a checkbox inside a grid cell?

Platform: WinForms |
Control: GridControl

In order to pre-select the checkbox in a grid cell, CellValue can be used to set value for the CheckBox. It is depending upon the values of CheckBoxOptions.CheckedValue and CheckBoxOptions.UncheckedValue. Because these properties hold the values for selecting the checkbox.

Code Snippet

C#

//Sets the cell type as Checkbox.
this.gridControl1[row, col].CellType = "CheckBox";
 
//Sets the Checked and Unchecked values for the checkbox.
this.gridControl1[row, col].CheckBoxOptions.CheckedValue = "true";
this.gridControl1[row, col].CheckBoxOptions.UncheckedValue = "false";
 
//Sets the type of the cell value as bool.
this.gridControl1[row, col].CellValueType = typeof(bool);
 
//Sets the Cell value.
this.gridControl1[row, col].CellValue = true;

 

VB

'Sets the cell type as Checkbox.
Me.gridControl1(row, col).CellType = "CheckBox"
 
'Sets the Checked and Unchecked values for the checkbox.
Me.gridControl1(row, col).CheckBoxOptions.CheckedValue = "true"
Me.gridControl1(row, col).CheckBoxOptions.UncheckedValue = "false"
 
'Sets the type of the cell value as bool.
Me.gridControl1(row, col).CellValueType = GetType(Boolean)
 
'Sets the Cell value.
Me.gridControl1(row, col).CellValue = True
 

 

Screenshot

Showing preselected checkbox

 

Sample Link:

C#: Preselecting_CheckBox_CS

VB: Preselecting_CheckBox_VB

 

 

2X faster development

The ultimate WinForms UI toolkit to boost your development speed.
ADD COMMENT
You must log in to leave a comment

Please sign in to access our KB

This page will automatically be redirected to the sign-in page in 10 seconds.

Up arrow icon

Warning Icon You are using an outdated version of Internet Explorer that may not display all features of this and other websites. Upgrade to Internet Explorer 8 or newer for a better experience.Close Icon

Live Chat Icon For mobile