RasterTerrainIndexExtent Constructor |
Initializes a new instance from the specified indices.
Namespace:
AGI.Foundation.Terrain
Assembly:
AGI.Foundation.TerrainReaders (in AGI.Foundation.TerrainReaders.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public 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 -> RasterTerrainIndexExtent
Parameters
- 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