RasterTerrainIndexExtent Constructor  | 
 
            Initializes a new instance from the specified indices.
            
 
    Namespace: 
   AGI.Foundation.Terrain
    Assembly:
   AGI.Foundation.TerrainReaders (in AGI.Foundation.TerrainReaders.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic RasterTerrainIndexExtent(
	int west,
	int south,
	int east,
	int north
)
Public Sub New ( 
	west As Integer,
	south As Integer,
	east As Integer,
	north As Integer
)
public:
RasterTerrainIndexExtent(
	int west, 
	int south, 
	int east, 
	int north
)
new : 
        west : int * 
        south : int * 
        east : int * 
        north : int -> RasterTerrainIndexExtentParameters
- west
 - Type: SystemInt32
The index of the westernmost post. - south
 - Type: SystemInt32
The index of the southernmost post. - east
 - Type: SystemInt32
The index of the easternmost post. - north
 - Type: SystemInt32
The index of the northernmost post. 
Exceptions| Exception | Condition | 
|---|
| ArgumentException | 
            Thrown when the west is greater than or equal to 
            the east, or when the south is
            greater than or equal to the north.
             | 
See Also