Description
Gets or sets the position used to compute the
distance from the camera. 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()
|
Remarks
Example
Shows the format of
the distance to position display condition's Position property.
| [C#] |
Copy Code
|
Array position = new object[]
{
6700,
0,
0
};
condition.Position = position;
|
|
Shows the format of
the distance to position display condition's Position property.
| [Visual Basic .NET] |
Copy Code
|
Dim
position As Array = New
Object() {6700, 0, 0}
condition.Position = position
|
|
See Also