ValueList.Add
Syntax:
Parameters:
<Value> (optional)
Value to be added.
<Representation> (optional)
A string expression containing a representation of the value being added.
Default value: Empty string.
<CheckMark> (optional)
Defines whether to create the new value with check mark set or not.
Default value: False.
<Picture> (optional)
Visual value representation.
Default value: Empty picture.
Returned value:
Description:
Availability:
Example:
Selection = Catalogs.PriceTypes.Select(); While Selection.Next() Do PriceTypesList.Add(Selection.Ref, Selection.Markup, True); EndDo; |