CompositeTerrainProviderInsert Method |
Namespace:
AGI.Foundation.Terrain
Assembly:
AGI.Foundation.TerrainReaders (in AGI.Foundation.TerrainReaders.dll) Version: 25.2.423.0 (25.2.423.0)
Syntaxpublic void Insert(
int index,
TerrainProvider item
)
Public Sub Insert (
index As Integer,
item As TerrainProvider
)
public:
virtual void Insert(
int index,
TerrainProvider^ item
) sealed
abstract Insert :
index : int *
item : TerrainProvider -> unit
override Insert :
index : int *
item : TerrainProvider -> unit Parameters
- index
- Type: SystemInt32
The index, based at zero, to where the item is to be inserted - item
- Type: AGI.Foundation.TerrainTerrainProvider
The specific object that is being inserted (Value can be null for reference types).
Implements
IListTInsert(Int32, T)
Exceptions| Exception | Condition |
|---|
| ArgumentNullException | Thrown when item is . |
| ArgumentException |
Thrown when item already exists in this composite,
or when item has a different
Shape or ShapeFixedFrame
than this composite.
|
See Also