ValueList.ChooseItem
Syntax:
Parameters:
<Title> (optional)
Choice window header. If this parameter is not specified a standard header is used.
Default value: Empty string.
<Item> (optional)
An item to which a list of values should be initially positioned during the interactive choice. If a parameter value is not a value list item included in this list, positioning cannot be executed.
Returned value:
If the user cancels selection, the Undefined value is returned.
Description:
Availability:
Note:
Example:
ItemSelection = PriceTypesList.FindByValue(SelValue); ItemSelection = PriceTypesList.ChooseItem("Select type of prices.", ItemSelection); If ItemSelection = Undefined Then Message("Type of prices not selected."); Else SelValue = ItemSelection.Value; EndIf; |