Description
Opt whether to set the rotation angle relative to north. (By default, the rotation angle is relative to the screen.)
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property RotateFromNorth() As Boolean
|
| [C#] |
|---|
public bool RotateFromNorth {get; set;}
|
| [Managed C++] |
|---|
public: __property bool get_RotateFromNorth(); public: __property void set_RotateFromNorth(
bool
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_RotateFromNorth(
VARIANT_BOOL * pVal
);
public: HRESULT put_RotateFromNorth(
VARIANT_BOOL RotateFromNorth
);
|
| [Java] |
|---|
public bool getRotateFromNorth();
public void setRotateFromNorth(
bool
);
|
| [Python - STK API] |
|---|
@property
def RotateFromNorth(self) -> bool:
@RotateFromNorth.setter
def RotateFromNorth(self, RotateFromNorth:bool) -> None:
|
See Also