C# Class MapAndPageLayoutSynchApp.Maps

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

Méthodes publiques

Méthode 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 méthode

Add the given Map to the collection
public Add ( IMap Map ) : void
Map IMap
Résultat void

Create() public méthode

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

Dispose() public méthode

Dispose the collection
public Dispose ( ) : void
Résultat void

Maps() public méthode

public Maps ( ) : System
Résultat System

Remove() public méthode

Remove the instance of the given Map
public Remove ( IMap Map ) : void
Map IMap
Résultat void

RemoveAt() public méthode

Remove the Map at the given index
public RemoveAt ( int Index ) : void
Index int
Résultat void

Reset() public méthode

Reset the Maps array
public Reset ( ) : void
Résultat void

get_Item() public méthode

Return the Map at the given index
public get_Item ( int Index ) : IMap
Index int
Résultat IMap