getlistitem (List1, Index1, Index2) , List[Index1][Index2]
This function is used for getting the value of an item at a specific index in a list.(Where list items are based on zero-indexed.)
Here's a general explanation of how you can retrieve the value of an item in a list.
Example:
<O N="getlistitemObject1" T="Project" Category="Functions" TransAlignRule="1">
<!-- created by ParamML Examples on 8/9/2023 -->
<P N="List1" V="[[1,2],[10,5],[4,8],[2,1]]" />
<P N="item_3_0_Value1" V="getlistitem(List1,3,0)" />
<P N="item_3_0_Value2" V="List1[3][0]" />
</O> |
Debug Trace |
As illustrated in the provided image, "List1" represents a collection composed of lists containing numerical elements. |
To view this example in the library, see (Engineering on Cloud ) |