Description
Gets or sets the Cartesian defining the
position of the
Projection in the central body's
fixed reference frame. The array contains the components of the
position arranged in the order x, y, z.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
Public Property Position() As Variant()
|
Example
Shows the format of
the projection's Position property.
| [C#] |
Copy Code
|
Array position = new object[]
{
31378.1,
0,
0
};
projection.Position = position;
|
|
Shows the format of
the projection's Position property.
| [Visual Basic .NET] |
Copy Code
|
Dim
position As Array = New
Object() {31378.1, 0, 0}
projection.Position = position
|
|
See Also