Goto: 4C Home | 4C Docs | System PCLs List sys.dflist_clear()

sys.dflist_clear()

Purpose:
sys.dflist_clear() clears all choices in a 4c list dfld
Usage:
ret = sys.dflist_clear(<dflabel>);
Arguments:

integer - <dflabel> - This should be the DFLABEL of the display field.
Returns:
integer <ret>
0 - OK
< 0 - Invalid <dflabel>, or cur program is not a screen program
Where Used:
sys.dflist_clear() can be called from any screen program that is open. You can not call sys.dflist_clear() in the InitPCL.
Example:
Description:
sys.dflist_clear() clears all choices in a list type display field. The list type display fields are:
Bugs/Features/Comments:
See Also:
sys.dflist_add()


Back to Top