C# Class MapAndPageLayoutSynchApp.Maps

Implementation of interface IMaps which is eventually a collection of Maps
Inheritance: IMaps, IDisposable
Exibir arquivo Open project: Esri/arcobjects-sdk-community-samples Class Usage Examples

Public Methods

Method Description
Add ( IMap Map ) : void

Add the given Map to the collection

Create ( ) : IMap

Create a new Map, add it to the collection and return it to the caller

Dispose ( ) : void

Dispose the collection

Maps ( ) : System
Remove ( IMap Map ) : void

Remove the instance of the given Map

RemoveAt ( int Index ) : void

Remove the Map at the given index

Reset ( ) : void

Reset the Maps array

get_Item ( int Index ) : IMap

Return the Map at the given index

Method Details

Add() public method

Add the given Map to the collection
public Add ( IMap Map ) : void
Map IMap
return void

Create() public method

Create a new Map, add it to the collection and return it to the caller
public Create ( ) : IMap
return IMap

Dispose() public method

Dispose the collection
public Dispose ( ) : void
return void

Maps() public method

public Maps ( ) : System
return System

Remove() public method

Remove the instance of the given Map
public Remove ( IMap Map ) : void
Map IMap
return void

RemoveAt() public method

Remove the Map at the given index
public RemoveAt ( int Index ) : void
Index int
return void

Reset() public method

Reset the Maps array
public Reset ( ) : void
return void

get_Item() public method

Return the Map at the given index
public get_Item ( int Index ) : IMap
Index int
return IMap