TerrainPostsUInt16Item Property  | 
 
            Gets or sets the post height at a particular set of indices.
            
 
    Namespace: 
   AGI.Foundation.Terrain
    Assembly:
   AGI.Foundation.TerrainReaders (in AGI.Foundation.TerrainReaders.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic ushort this[
	int longitudeIndex,
	int latitudeIndex
] { get; set; }Public Default Property Item ( 
	longitudeIndex As Integer,
	latitudeIndex As Integer
) As UShort
	Get
	Set
public:
property unsigned short default[int longitudeIndex, int latitudeIndex] {
	unsigned short get (int longitudeIndex, int latitudeIndex);
	void set (int longitudeIndex, int latitudeIndex, unsigned short value);
}member Item : uint16 with get, set
Parameters
- longitudeIndex
 - Type: SystemInt32
The longitude index of the post. 0 refers to the western-most post stored by this instance. - latitudeIndex
 - Type: SystemInt32
The latitude index of the post. 0 refers to the southern-most post stored by this instance. 
Return Value
Type: 
UInt16The height of the post, in the native units of the terrain provider.
See Also