Click or drag to resize

ImageCollection Class

A collection of GlobeImageOverlay objects.
Inheritance Hierarchy
SystemObject
  AGI.Foundation.GraphicsImageCollection

Namespace:  AGI.Foundation.Graphics
Assembly:  AGI.Foundation.Graphics (in AGI.Foundation.Graphics.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public sealed class ImageCollection : ICollection<GlobeImageOverlay>, 
	IEnumerable<GlobeImageOverlay>, IDisposable

The ImageCollection type exposes the following members.

Properties
  NameDescription
Public propertyCount
Gets the number of GlobeOverlay objects in the collection.
Public propertyIsReadOnly
Gets whether or not the collection is read only.
Public propertyItem
Gets the GlobeImageOverlay at the specified index.
Top
Methods
  NameDescription
Public methodAdd(GlobeImageOverlay)
Adds imageryOverlay to the collection.
Public methodAdd(String)
Creates a GlobeOverlay from the uri, which represents a Uri, and adds it to the collection.
Public methodAdd(Uri)
Creates a GlobeOverlay from the uri and adds it to the collection.
Public methodAddAsync(GlobeImageOverlay)
Adds imageryOverlay to the collection asynchronously.
Public methodAddAsync(String)
Creates a GlobeImageOverlay from the uri, which represents a Uri, and adds it to the collection asynchronously.
Public methodAddAsync(Uri)
Creates a GlobeImageOverlay from the uri and adds it to the collection asynchronously.
Public methodAddRange
Adds the elements of the specified collection to the end of the ImageCollection.
Public methodAddRangeAsync
Adds the elements of the specified collection to the end of the ImageCollection asynchronously.
Public methodBringToFront
Brings the GlobeImageOverlay to the front of the collection so it is rendered first or on the bottom.
Public methodClear
Removes all GlobeImageOverlay objects from the collection.
Public methodContains(GlobeImageOverlay)
Checks the presence of a GlobeImageOverlay in the collection.
Public methodContains(String)
Checks the presence of a GlobeImageOverlay with the specified Uri in the collection.
Public methodContains(Uri)
Checks the presence of a GlobeImageOverlay with the specified Uri in the collection.
Public methodCopyTo
Copies the elements of the collection starting at startingIndex into an array.
Public methodDispose
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetEnumerator
Constructs an iterator that can be used to iterate the collection.
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodIndexOf(GlobeImageOverlay)
Gets the index of the specified GlobeImageOverlay.
Public methodIndexOf(String)
Gets the index of the GlobeImageOverlay with the specified Uri.
Public methodIndexOf(Uri)
Gets the index of the GlobeImageOverlay with the specified Uri.
Public methodMove(GlobeImageOverlay, Int32)
Moves the GlobeImageOverlay to the specified position.
Public methodMove(Int32, Int32)
Moves the GlobeImageOverlay at the specified index to the specified position.
Public methodRemove
Removes a GlobeImageOverlay from the collection.
Public methodSendToBack
Sends the GlobeImageOverlay to the back of the collection so it is rendered last or on the top.
Public methodSwap(GlobeImageOverlay, GlobeImageOverlay)
Swaps the position of two GlobeImageOverlay objects.
Public methodSwap(Int32, Int32)
Swaps the position of two GlobeImageOverlay objects at the specified indices.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Events
  NameDescription
Public eventAddComplete
Raised when an asynchronous add is completed.
Top
See Also