DtvLong dal_wdg_set_row (row)

Sets the row position in the current list widget.

Input Parameters Significance
DtvLong row row position

Output Parameters Significance
none -

Return Code Significance
0 no error
1 no active list widget

If the list contains n records, values of 1 to n+1 are allowed for row position. With the value n+1 records can be inserted at the end of the list, even if this exceeds the maximum record limit of the list:

lnm=dal_mas_ret_len_rec(idm); //current number of records in mask
rc=dal_wdg_set_row(lnm+1); //row position after last record
rc=dal_iwf_ins_elm();