Description
This method is similar to QueryCartesian but can be used by earlybound(c#, vb.net...) and latebound(scripting languages) clients. The array returns the values in the order X(index 0), Y(index 1) and Z(index 2).
Syntax
[Visual Basic .NET] |
---|
Public Function QueryCartesianArray() As System.Array
|
[C#] |
---|
public System.Array QueryCartesianArray();
|
[Managed C++] |
---|
public: System::Array QueryCartesianArray();
|
[Unmanaged C++] |
---|
public: HRESULT QueryCartesianArray(
SAFEARRAY * * ppRetVal
);
|
[Java] |
---|
public AgSafeArray queryCartesianArray();
|
[Python - STK API] |
---|
def QueryCartesianArray(self) -> list:
|
Return Type
A one dimensional array containing three values X, Y and Z.
See Also