DataGridAddCheckBoxColumn

 

The 'DataGridAddCheckBoxColumn' function adds the checkbox Column on DataGrid object.

 

void @DataGridAddCheckBoxColumn(string class_name, string column_name, string column_text, string data_name);

 

Parameters

string class_name : Class name of DataGrid object.

string column_name : Column name. (You can set the button Column name firstly by using this function. If you refer to Column which is related to other Grid function, you have to use Column name which is set by this function.)

string column_text : Displayed text on Column at DataGrid object.

string data_name : Column name about data to connect. (It is part to enter the Column name of database, when DataGrid object is created by database.)

 

Return Value

None

 

Example

@DataGridAddCheckBoxColumn("DataGrid1", "CheckBoxColumn1", "Column_Text", "");
Description : Adds the CheckBox Column 'CheckBoxColumn1' to DataGrid object 'DataGrid1'.

 

Version Information

Supported Version : 10.2.4 or higher