User Tools

Site Tools


thinkgeo.mapsuite.portablecore.geocollection_t

Table of Contents

ThinkGeo.MapSuite.PortableCore.GeoCollection‹T›

Note: The page was created before Map Suite 10. Map Suite 10.0 organized many classes into new namespaces and assemblies as well as had a few minor breaks in compatibility. The majority of previously built code should work without modification assuming the new namespaces are added. For guidance on upgrading your existing code, please check out MapSuite 10 Upgrade Guide.

<!– Class –> This class is a collection with some methods specialized for dealing with Layers and other spatial classes.

Remarks

We have added some helpful methods like MoveUp, MoveDown, etc. These help when you are manipulating Layers.

Inheritance Hierarchy

Members Summary

Public Constructors

Name Parameters DeclaringType Summary
Public MethodGeoCollection‹T› This is the default constructor for the class.

Protected Constructors

Name Parameters DeclaringType Summary

Public Methods

Name Parameters DeclaringType Summary
Public MethodAdd String, T GeoCollection<T> This method adds an item to the collection by specifying the item and a key.
Public MethodAdd T Collection<T> This method adds an item to the collection.
Public MethodAdd T GeoCollection<T> This method adds an item to the collection.
Public MethodClear Collection<T>
Public MethodContains T Collection<T>
Public MethodContains String GeoCollection<T> This method returns whether an item is in the collection based on the specified key.
Public MethodCopyTo T[], Int32 Collection<T>
Public MethodEquals Object Object
Public MethodGetEnumerator Collection<T>
Public MethodGetHashCode Object
Public MethodGetKeys GeoCollection<T> This method returns a collection of the keys in the collection.
Public MethodGetType Object
Public MethodIndexOf T Collection<T>
Public MethodInsert Int32, T Collection<T> Inserts an element into the System.Collections.ObjectModel.Collection<T> at the specified index.
Public MethodInsert Int32, T GeoCollection<T> Inserts an element into the System.Collections.ObjectModel.Collection<T> at the specified index.
Public MethodInsert Int32, String, T GeoCollection<T> Inserts an element into the System.Collections.ObjectModel.Collection<T> at the specified index and key.
Public MethodMoveDown String GeoCollection<T> This method moves an item down in the collection.
Public MethodMoveDown T GeoCollection<T> This method moves an item down in the collection.
Public MethodMoveDown Int32 GeoCollection<T> This method moves an item down in the collection.
Public MethodMoveTo T, Int32 GeoCollection<T> This method moves the item you specified to the location of toIndex in the collection.
Public MethodMoveTo String, Int32 GeoCollection<T> This method moves the item with the key you specified to the location of toIndex in the collection.
Public MethodMoveTo Int32, Int32 GeoCollection<T> This method moves the item at fromIndex to the location of toIndex in the collection.
Public MethodMoveToBottom T GeoCollection<T> This method moves the item specified key to the bottom of the collection.
Public MethodMoveToBottom Int32 GeoCollection<T> This method moves the item at the specified index to the bottom of the collection.
Public MethodMoveToBottom String GeoCollection<T> This method moves the item with the specified key to the bottom of the collection.
Public MethodMoveToTop T GeoCollection<T> This method moves the item specified to the top of the collection.
Public MethodMoveToTop String GeoCollection<T> This method moves the item with the specified key to the top of the collection.
Public MethodMoveToTop Int32 GeoCollection<T> This method moves the item at the specified index to the top of the collection.
Public MethodMoveUp T GeoCollection<T> This method moves an item up in the collection.
Public MethodMoveUp String GeoCollection<T> This method moves an item up in the collection.
Public MethodMoveUp Int32 GeoCollection<T> This method moves an item up in the collection.
Public MethodRemove String GeoCollection<T> This method removes an item from the collection based on the specified key.
Public MethodRemove T Collection<T>
Public MethodRemoveAt Int32 Collection<T>
Public MethodToString Object

Protected Methods

Name Parameters DeclaringType Summary
Protected MethodClearItems Collection<T>(overriden) This method clears the items from the collection.
Protected MethodFinalize Object
Protected MethodInsertItem Int32, T Collection<T>(overriden)
Protected MethodMemberwiseClone Object
Protected MethodOnAdded AddedGeoCollectionEventArgs GeoCollection<T>
Protected MethodOnAdding AddingGeoCollectionEventArgs GeoCollection<T>
Protected MethodOnClearedItems ClearedItemsGeoCollectionEventArgs GeoCollection<T>
Protected MethodOnClearingItems ClearingItemsGeoCollectionEventArgs GeoCollection<T>
Protected MethodOnCollectionChanged NotifyCollectionChangedEventArgs GeoCollection<T>
Protected MethodOnInserted InsertedGeoCollectionEventArgs GeoCollection<T>
Protected MethodOnInserting InsertingGeoCollectionEventArgs GeoCollection<T>
Protected MethodOnPropertyChanged PropertyChangedEventArgs GeoCollection<T>
Protected MethodOnRemoved RemovedGeoCollectionEventArgs GeoCollection<T>
Protected MethodOnRemoving RemovingGeoCollectionEventArgs GeoCollection<T>
Protected MethodRemoveItem Int32 Collection<T>(overriden) This method removes an item from the collection based on the specified index.
Protected MethodSetItem Int32, T Collection<T>(overriden) This method allows you to set an item based on the index.

Public Properties

Name Return DeclaringType Summary
Public PropertyCount Int32 Collection<T>
Public PropertyItem T GeoCollection<T>
Public PropertyItem T Collection<T>

Protected Properties

Name Return DeclaringType Summary
Protected PropertyItems IList<T> Collection<T>

Public Events

Public Constructors

GeoCollection‹T›()

This is the default constructor for the class.

Parameters

Name Type Description

Go Back

Protected Constructors

Public Methods

Add(String, T)

This method adds an item to the collection by specifying the item and a key.

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
key String<!– System.String –> This parameter is the key to find the item.
item T<!– T –> This parameter is the item you want added to the collection.

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

Add(T)

This method adds an item to the collection.

Remarks

This method adds an item to the collection, and the item's key will be a random GUID.

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
item T<!– T –> This parameter is the item you want added to the collection.

<!– Collection{T} –> Go Back

Add(T)

This method adds an item to the collection.

Remarks

This method adds an item to the collection, and the item's key will be a random GUID.

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
item T<!– T –> This parameter is the item you want added to the collection.

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

Clear()

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description

<!– Collection{T} –> Go Back

Contains(T)

Return Value

Return Type Description
Boolean<!– System.Boolean –>

Parameters

Name Type Description
item T<!– T –>

<!– Collection{T} –> Go Back

Contains(String)

This method returns whether an item is in the collection based on the specified key.

Return Value

Return Type Description
Boolean<!– System.Boolean –> This method returns whether an item is in the collection based on the specified key.

Parameters

Name Type Description
key String<!– System.String –> This parameter is the key of the item you are searching for.

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

CopyTo(T[], Int32)

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
array T[]<!– Tthinkgeo.mapsuite.portablecore.geocollection_t –>
index Int32<!– System.Int32 –>

<!– Collection{T} –> Go Back

Equals(Object)

Return Value

Return Type Description
Boolean<!– System.Boolean –>

Parameters

Name Type Description
obj Object<!– System.Object –>

<!– System.Object –> Go Back

GetEnumerator()

Return Value

Return Type Description
IEnumerator<T><!– IEnumerator{T} –>

Parameters

Name Type Description

<!– Collection{T} –> Go Back

GetHashCode()

Return Value

Return Type Description
Int32<!– System.Int32 –>

Parameters

Name Type Description

<!– System.Object –> Go Back

GetKeys()

This method returns a collection of the keys in the collection.

Return Value

Return Type Description
Collection<String><!– System.Collections.ObjectModel.Collection{System.String} –> This method returns a collection of the keys in the collection.

Parameters

Name Type Description

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

GetType()

Return Value

Return Type Description
Type<!– System.Type –>

Parameters

Name Type Description

<!– System.Object –> Go Back

IndexOf(T)

Return Value

Return Type Description
Int32<!– System.Int32 –>

Parameters

Name Type Description
item T<!– T –>

<!– Collection{T} –> Go Back

Insert(Int32, T)

Inserts an element into the System.Collections.ObjectModel.Collection<T> at the specified index.

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
index Int32<!– System.Int32 –> The zero-based index at which item should be inserted.
item T<!– T –> The object to insert. The value can be null for reference types.

<!– Collection{T} –> Go Back

Insert(Int32, T)

Inserts an element into the System.Collections.ObjectModel.Collection<T> at the specified index.

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
index Int32<!– System.Int32 –> The zero-based index at which item should be inserted.
item T<!– T –> The object to insert. The value can be null for reference types.

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

Insert(Int32, String, T)

Inserts an element into the System.Collections.ObjectModel.Collection<T> at the specified index and key.

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
index Int32<!– System.Int32 –> The zero-based index at which item should be inserted.
key String<!– System.String –> The key to find the item.
item T<!– T –> The object to insert. The value can be null for reference types.

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

MoveDown(String)

This method moves an item down in the collection.

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
key String<!– System.String –> This parameter is the key of the item in the dictionary.

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

MoveDown(T)

This method moves an item down in the collection.

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
item T<!– T –> This parameter is the item you want to move down in the dictionary.

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

MoveDown(Int32)

This method moves an item down in the collection.

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
index Int32<!– System.Int32 –> This parameter is the index of the item in the collection.

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

MoveTo(T, Int32)

This method moves the item you specified to the location of toIndex in the collection.

Remarks

This method moves the item you specified to the location of toIndex in the collection.

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
item T<!– T –> This parameter is the item you want to move in the collection.
toIndex Int32<!– System.Int32 –> This parameter is the target index that you want to move the item to in the collection.

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

MoveTo(String, Int32)

This method moves the item with the key you specified to the location of toIndex in the collection.

Remarks

This method moves the item with the key you specified to the location of toIndex in the collection.

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
key String<!– System.String –> This parameter is the key of item you want to move in the collection.
toIndex Int32<!– System.Int32 –> This parameter is the target index that you want to move the item to in the collection.

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

MoveTo(Int32, Int32)

This method moves the item at fromIndex to the location of toIndex in the collection.

Remarks

This method moves the item at fromIndex to the location of toIndex in the collection.

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
fromIndex Int32<!– System.Int32 –> This parameter is the index of the item you want move from in the collection.
toIndex Int32<!– System.Int32 –> This parameter is the target index that you want to move the item to in the collection.

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

MoveToBottom(T)

This method moves the item specified key to the bottom of the collection.

Remarks

This method moves the item specified key to the bottom of the collection.

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
item T<!– T –> This parameter is the item you want move to the bottom of the collection.

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

MoveToBottom(Int32)

This method moves the item at the specified index to the bottom of the collection.

Remarks

This method moves the item at the specified index to the bottom of the collection.

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
index Int32<!– System.Int32 –> This parameter is the index of the item you want move to the bottom of the collection.

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

MoveToBottom(String)

This method moves the item with the specified key to the bottom of the collection.

Remarks

This method moves the item with the specified key to the bottom of the collection.

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
key String<!– System.String –> This parameter is the key of the item you want move to the bottom of the collection.

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

MoveToTop(T)

This method moves the item specified to the top of the collection.

Remarks

This method moves the item specified to the top of the collection.

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
item T<!– T –> This parameter is the item you want move to the top of the collection.

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

MoveToTop(String)

This method moves the item with the specified key to the top of the collection.

Remarks

This method moves the item with the specified key to the top of the collection.

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
key String<!– System.String –> This parameter is the key of the item you want move to the top of the collection.

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

MoveToTop(Int32)

This method moves the item at the specified index to the top of the collection.

Remarks

This method moves the item at the specified index to the top of the collection.

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
index Int32<!– System.Int32 –> This parameter is the index of the item you want move to the top of the collection.

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

MoveUp(T)

This method moves an item up in the collection.

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
item T<!– T –> This parameter is the item you want to move up in the collection.

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

MoveUp(String)

This method moves an item up in the collection.

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
key String<!– System.String –> This parameter is the key of the item in the collection.

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

MoveUp(Int32)

This method moves an item up in the collection.

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
index Int32<!– System.Int32 –> This parameter is the index of the item in the collection.

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

Remove(String)

This method removes an item from the collection based on the specified key.

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
key String<!– System.String –> This parameter is the key of the item you want to remove.

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

Remove(T)

Return Value

Return Type Description
Boolean<!– System.Boolean –>

Parameters

Name Type Description
item T<!– T –>

<!– Collection{T} –> Go Back

RemoveAt(Int32)

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
index Int32<!– System.Int32 –>

<!– Collection{T} –> Go Back

ToString()

Return Value

Return Type Description
String<!– System.String –>

Parameters

Name Type Description

<!– System.Object –> Go Back

Protected Methods

ClearItems()

This method clears the items from the collection.

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description

<!– Collection{T}(overriden) –> Go Back

Finalize()

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description

<!– System.Object –> Go Back

InsertItem(Int32, T)

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
index Int32<!– System.Int32 –>
item T<!– T –>

<!– Collection{T}(overriden) –> Go Back

MemberwiseClone()

Return Value

Return Type Description
Object<!– System.Object –>

Parameters

Name Type Description

<!– System.Object –> Go Back

OnAdded(AddedGeoCollectionEventArgs)

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
e AddedGeoCollectionEventArgs<!– ThinkGeo.MapSuite.PortableCore.AddedGeoCollectionEventArgs –>

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

OnAdding(AddingGeoCollectionEventArgs)

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
e AddingGeoCollectionEventArgs<!– ThinkGeo.MapSuite.PortableCore.AddingGeoCollectionEventArgs –>

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

OnClearedItems(ClearedItemsGeoCollectionEventArgs)

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
e ClearedItemsGeoCollectionEventArgs<!– ThinkGeo.MapSuite.PortableCore.ClearedItemsGeoCollectionEventArgs –>

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

OnClearingItems(ClearingItemsGeoCollectionEventArgs)

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
e ClearingItemsGeoCollectionEventArgs<!– ThinkGeo.MapSuite.PortableCore.ClearingItemsGeoCollectionEventArgs –>

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

OnCollectionChanged(NotifyCollectionChangedEventArgs)

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
e NotifyCollectionChangedEventArgs<!– System.Collections.Specialized.NotifyCollectionChangedEventArgs –>

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

OnInserted(InsertedGeoCollectionEventArgs)

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
e InsertedGeoCollectionEventArgs<!– ThinkGeo.MapSuite.PortableCore.InsertedGeoCollectionEventArgs –>

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

OnInserting(InsertingGeoCollectionEventArgs)

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
e InsertingGeoCollectionEventArgs<!– ThinkGeo.MapSuite.PortableCore.InsertingGeoCollectionEventArgs –>

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

OnPropertyChanged(PropertyChangedEventArgs)

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
e PropertyChangedEventArgs<!– System.ComponentModel.PropertyChangedEventArgs –>

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

OnRemoved(RemovedGeoCollectionEventArgs)

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
e RemovedGeoCollectionEventArgs<!– ThinkGeo.MapSuite.PortableCore.RemovedGeoCollectionEventArgs –>

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

OnRemoving(RemovingGeoCollectionEventArgs)

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
e RemovingGeoCollectionEventArgs<!– ThinkGeo.MapSuite.PortableCore.RemovingGeoCollectionEventArgs –>

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

RemoveItem(Int32)

This method removes an item from the collection based on the specified index.

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
index Int32<!– System.Int32 –> This parameter is the index of the item you want to remove.

<!– Collection{T}(overriden) –> Go Back

SetItem(Int32, T)

This method allows you to set an item based on the index.

Return Value

Return Type Description
Void<!– System.Void –>

Parameters

Name Type Description
index Int32<!– System.Int32 –> This parameter is the index of the item you want to set.
item T<!– T –> This parameter is the item you want to set.

<!– Collection{T}(overriden) –> Go Back

Public Properties

Count

Return Value

Return Type
Int32<!– System.Int32 –>

<!– Collection{T} –> Go Back

Item

Return Value

Return Type
T<!– T –>

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

Item

Return Value

Return Type
T<!– T –>

<!– Collection{T} –> Go Back

Protected Properties

Items

Return Value

Return Type
IList<T><!– IList{T} –>

<!– Collection{T} –> Go Back

Public Events

Added

Event Arguments

Event Arguments
AddedGeoCollectionEventArgs<!– ThinkGeo.MapSuite.PortableCore.AddedGeoCollectionEventArgs –>

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

Adding

Event Arguments

Event Arguments
AddingGeoCollectionEventArgs<!– ThinkGeo.MapSuite.PortableCore.AddingGeoCollectionEventArgs –>

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

ClearedItems

Event Arguments

Event Arguments
ClearedItemsGeoCollectionEventArgs<!– ThinkGeo.MapSuite.PortableCore.ClearedItemsGeoCollectionEventArgs –>

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

ClearingItems

Event Arguments

Event Arguments
ClearingItemsGeoCollectionEventArgs<!– ThinkGeo.MapSuite.PortableCore.ClearingItemsGeoCollectionEventArgs –>

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

CollectionChanged

Event Arguments

Event Arguments
NotifyCollectionChangedEventArgs<!– System.Collections.Specialized.NotifyCollectionChangedEventArgs –>

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

Inserted

Event Arguments

Event Arguments
InsertedGeoCollectionEventArgs<!– ThinkGeo.MapSuite.PortableCore.InsertedGeoCollectionEventArgs –>

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

Inserting

Event Arguments

Event Arguments
InsertingGeoCollectionEventArgs<!– ThinkGeo.MapSuite.PortableCore.InsertingGeoCollectionEventArgs –>

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

PropertyChanged

Event Arguments

Event Arguments
PropertyChangedEventArgs<!– System.ComponentModel.PropertyChangedEventArgs –>

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

Removed

Event Arguments

Event Arguments
RemovedGeoCollectionEventArgs<!– ThinkGeo.MapSuite.PortableCore.RemovedGeoCollectionEventArgs –>

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

Removing

Event Arguments

Event Arguments
RemovingGeoCollectionEventArgs<!– ThinkGeo.MapSuite.PortableCore.RemovingGeoCollectionEventArgs –>

<!– ThinkGeo.MapSuite.PortableCore.GeoCollection{T} –> Go Back

NOTOC MapSuitePortableCore ThinkGeo.MapSuite.PortableCore UpdateDocumentation

thinkgeo.mapsuite.portablecore.geocollection_t.txt · Last modified: 2017/03/16 21:59 (external edit)