Description
Gets or sets the direction of the camera in
Axes. The array contains the components of the direction arranged in the order x, y, z.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property Direction() As System.Array
|
| [C#] |
|---|
public System.Array Direction {get; set;}
|
| [Managed C++] |
|---|
public: __property System::Array get_Direction(); public: __property void set_Direction(
System::Array
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_Direction(
SAFEARRAY * * ppRetVal
);
public: HRESULT put_Direction(
SAFEARRAY * Direction
);
|
| [Java] |
|---|
public AgSafeArray getDirection();
public void setDirection(
AgSafeArray
);
|
[Python - STK API ] |
|---|
@property
def Direction(self) -> list:
@Direction.setter
def Direction(self, Direction:list) -> None:
|
See Also