DataGridSetRowData

 

The 'DataGridSetRowData' function enters the data to specified Column and Row of DataGrid object.

 

void @DataGridSetRowData(string class_name, string column_name, int row_pos, string data);

 

Parameters

string class_name : Class name of DataGrid object.

string column_name : Column name.

int row_pos : Row number.

string data : Data to enter.

 

Return Value

None

 

Example

@DataGridSetRowData("DataGrid1", "NAME", 0, "Hong Gildong");

Description : It changes the 1st row data of 'NAME' Column at DataGrid object 'DataGrid1', as 'Hong Gildong'.

 

Version Information

Supported Version : 10.2.4 or higher