Description
If true, Astrogator will store satellite information in binary format - to preserve the maximum amount of precision.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property SaveNumbersInRawFormat() As Boolean
|
[C#] |
---|
public bool SaveNumbersInRawFormat {get; set;}
|
[Managed C++] |
---|
public: __property bool get_SaveNumbersInRawFormat(); public: __property void set_SaveNumbersInRawFormat(
bool
);
|
[Unmanaged C++] |
---|
public: HRESULT get_SaveNumbersInRawFormat(
VARIANT_BOOL * pVal
);
public: HRESULT put_SaveNumbersInRawFormat(
VARIANT_BOOL newVal
);
|
[Java] |
---|
public bool getSaveNumbersInRawFormat();
public void setSaveNumbersInRawFormat(
bool
);
|
[Python - STK API] |
---|
@property
def SaveNumbersInRawFormat(self) -> bool:
@SaveNumbersInRawFormat.setter
def SaveNumbersInRawFormat(self, newVal:bool) -> None:
|
See Also