ValueList.CheckItems
Syntax:
Parameters:
<Title> (optional)
Dialog window header. If this parameter is not specified a standard header is used.
Default value: Empty string.
Returned value:
True indicates that the OK button is depressed in the check dialog; otherwise it is False.
Description:
Availability:
Note:
Example:
If PriceTypesList.CheckItems("Types of prices marked for deletion.") Then For each Item In PriceTypesList Do If Item.Check Then Item.Value.GetObject(). SetDeletionMark(True); EndIf; EndDo; Else Message("UNMARKING types of prices for deletion."); EndIf; |