Retrieves a map.
[C#] In C#, this property is the indexer for the Maps class.
[Visual Basic] Public Default Property ReadOnly Item( _ ByVal id As Integer _ ) As Map [C#] public Map this[ int id ] { get; } [C++] public: __property Map* get_Item( int id ); [JScript] returnValue = MapsObject.Item( id ); -or- returnValue = MapsObject( id );
[JScript] In JScript, you can use the default indexed properties defined by a type, but you cannot explicitly define your own. However, specifying the expando attribute on a class automatically provides a default indexed property whose type is Object and whose index type is String.
Maps Class | croemud.map Namespace