Map.definitionString Method [AX 2012]

Returns a string that contains the definition of the map.

public str definitionString()

Run On

Called

Return Value

Type: str
A string that contains a definition of the map.

The definition of the map.

The following example creates a map, and then prints out the definition of the map.

{ 
    Map myMap = new Map(Types::Integer, Types::String); 
  
    print myMap.definitionString(); 
    pause; 
}

Community Additions

ADD
Show: