OTX Reference  
OpenTestSystem.Otx.Core.Terms.MapGetValueList Class Reference

List of values ​​in a map More...

Inheritance diagram for OpenTestSystem.Otx.Core.Terms.MapGetValueList:
Inheritance graph

Public Attributes

MapTerm map
 Reference to a map. More...
 
- Public Attributes inherited from OpenTestSystem.Otx.Core.Terms.Term
MetaData metaData
 Store additional More...
 

Detailed Description

List of values ​​in a map

MapGetValueList is a term which returns the result as a list with the values ​​in a Map.

Note
IMPORTANT - The order in which the values of a Map are returned is not defined!
Syntax
ListTerm = MapGetValueList(MapTerm);
Examples
// Local Declarations
Map<Integer, String> map = {{1:"text1"}, {2;"text2"}};
List<Integer> result;
//Returns result = {"text1", "text2"}
result = MapGetValueList(map);
MapTerm map
Reference to a map.
Definition: Core.cs:7633

Member Data Documentation

◆ map

MapTerm OpenTestSystem.Otx.Core.Terms.MapGetValueList.map

Reference to a map.