NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Array.GetValue

Gets the value(s) of the Array element(s) at the specified index(es).

Overload List

Gets the value at the specified position in the two-dimensional Array.

[Visual Basic] Overloads Public Function GetValue(Integer, Integer) As Object
[C#] public object GetValue(int, int);
[C++] public: Object* GetValue(int, int);
[JScript] public function GetValue(int, int) : Object;

Gets the value at the specified position in the three-dimensional Array.

[Visual Basic] Overloads Public Function GetValue(Integer, Integer, Integer) As Object
[C#] public object GetValue(int, int, int);
[C++] public: Object* GetValue(int, int, int);
[JScript] public function GetValue(int, int, int) : Object;

Gets the value at the specified position in the multidimensional Array.

[Visual Basic] Overloads Public Function GetValue(Integer()) As Object
[C#] public object GetValue(int[]);
[C++] public: Object* GetValue(int*[]);
[JScript] public function GetValue(int[]) : Object;

Gets the value at the specified position in the one-dimensional Array.

[Visual Basic] Overloads Public Function GetValue(Integer) As Object
[C#] public object GetValue(int);
[C++] public: Object* GetValue(int);
[JScript] public function GetValue(int) : Object;

See Also

Array Class | Array Members | System Namespace