Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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;
}