Description
Gets or sets the position of the model. The
position is defined in the model's Reference Frame. The array
contains the components of the position in the order x, y, z.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
Public Property Position() As Variant()
|
Remarks
Example
Shows the format of
the model's Position property.
| [C#] |
Copy Code
|
Array position = new object[]
{
31378.1,
0,
0
};
model.Position = position;
|
|
Shows the format of
the model's Position property.
| [Visual Basic .NET] |
Copy Code
|
Dim
position As Array = New
Object() {31378.1, 0, 0}
model.Position = position
|
|
See Also