Description
A path point position as a one-dimensional array of three elements corresponding to (X,Y,Z) cartesian coordinates.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property Position() As System.Array
|
[C#] |
---|
public System.Array Position {get; set;}
|
[Managed C++] |
---|
public: __property System::Array get_Position(); public: __property void set_Position(
System::Array
);
|
[Unmanaged C++] |
---|
public: HRESULT get_Position(
SAFEARRAY * * ppRetVal
);
public: HRESULT put_Position(
SAFEARRAY * Position
);
|
[Java] |
---|
public VariantArray getPosition();
public void setPosition(
VariantArray
);
|
See Also
Example
Shows the format of the path point's Position property.
[C#] |
---|
Array position = new object[]
{
1089235,
-4800930,
4046386
};
path.Position = position;
|
|
Shows the format of the path point's Position property.
[Visual Basic .NET] |
---|
Dim position As Array = New Object() {1089235, -4800930, 4046386}
path.Position = position
|
|