Arbortext Command Language > Functions by Alphabetical Listing > dlgitem_set_check_at
  
dlgitem_set_check_at
dlgitem_set_check_at (window, listtag, row, checkstate)
Sets the check state of the specific checkable outline list entry row in the checkable outline list listtag in window. If listtag does not refer to a checkable outline list list tag, $ERROR is set and 0 is returned. Otherwise, 1 is returned.
The window parameter is a window identifier. The listtag parameter is a checkable outline list listtag (case sensitive). The row parameter is an offset into listtag (starting from one). The checkstate parameter indicates the state the check box for the list entry should take. (0 indicates no check, 1 indicates a check).
Example
$ret = dlgitem_set_check_at($win, "Hierarchy", 3, 0)
Sets the check state for the third item in the checkable outline list item in Hierarchy to unchecked.