Gets the value(s) of the Array element(s) at the specified index(es).
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;