Map.definitionString Method

Returns a string that contains the definition of the map.

Syntax

public str definitionString()

Run On

Called

Return Value

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

Remarks

The definition of the map.

Examples

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; 
}

See Also

Map Class

Map.toString Method