| TerrainPostsIntMinimumGetFourPostHeights Method  | 
 
            Gets the heights of four posts, specified by index.
            
 
    Namespace: 
   AGI.Foundation.Terrain
    Assembly:
   AGI.Foundation.TerrainReaders (in AGI.Foundation.TerrainReaders.dll) Version: 25.1.421.0 (25.1.421.0)
 Syntax
Syntaxpublic override void GetFourPostHeights(
	int west,
	int south,
	int east,
	int north,
	out double southWest,
	out double southEast,
	out double northEast,
	out double northWest
)
Public Overrides Sub GetFourPostHeights ( 
	west As Integer,
	south As Integer,
	east As Integer,
	north As Integer,
	<OutAttribute> ByRef southWest As Double,
	<OutAttribute> ByRef southEast As Double,
	<OutAttribute> ByRef northEast As Double,
	<OutAttribute> ByRef northWest As Double
)
public:
virtual void GetFourPostHeights(
	int west, 
	int south, 
	int east, 
	int north, 
	[OutAttribute] double% southWest, 
	[OutAttribute] double% southEast, 
	[OutAttribute] double% northEast, 
	[OutAttribute] double% northWest
) override
abstract GetFourPostHeights : 
        west : int * 
        south : int * 
        east : int * 
        north : int * 
        southWest : float byref * 
        southEast : float byref * 
        northEast : float byref * 
        northWest : float byref -> unit 
override GetFourPostHeights : 
        west : int * 
        south : int * 
        east : int * 
        north : int * 
        southWest : float byref * 
        southEast : float byref * 
        northEast : float byref * 
        northWest : float byref -> unit Parameters
- west
- Type: SystemInt32
 The index of the two western posts.  0 refers to western-most post stored by this instance.
- south
- Type: SystemInt32
 The index of the two southern posts.  0 refers to southern-most post stored by this instance.
- east
- Type: SystemInt32
 The index of the two eastern posts.  0 refers to western-most post stored by this instance.
- north
- Type: SystemInt32
 The index of the two northern posts.  0 refers to southern-most post stored by this instance.
- southWest
- Type: SystemDouble
 On return,
            the height of the southwest post, in the native units of the terrain provider.
- southEast
- Type: SystemDouble
 On return,
            the height of the southeast post, in the native units of the terrain provider.
- northEast
- Type: SystemDouble
 On return,
            the height of the northeast post, in the native units of the terrain provider.
- northWest
- Type: SystemDouble
 On return,
            the height of the northwest post, in the native units of the terrain provider.
 Exceptions
Exceptions See Also
See Also