Description
Clear Corrections Before Each Run - if true, the differential corrector is automatically reset each time that it is run, discarding information that was computed the last time it was run.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property ClearCorrectionsBeforeRun() As Boolean
|
[C#] |
---|
public bool ClearCorrectionsBeforeRun {get; set;}
|
[Managed C++] |
---|
public: __property bool get_ClearCorrectionsBeforeRun(); public: __property void set_ClearCorrectionsBeforeRun(
bool
);
|
[Unmanaged C++] |
---|
public: HRESULT get_ClearCorrectionsBeforeRun(
VARIANT_BOOL * pVal
);
public: HRESULT put_ClearCorrectionsBeforeRun(
VARIANT_BOOL newVal
);
|
[Java] |
---|
public bool getClearCorrectionsBeforeRun();
public void setClearCorrectionsBeforeRun(
bool
);
|
[Python - STK API] |
---|
@property
def ClearCorrectionsBeforeRun(self) -> bool:
@ClearCorrectionsBeforeRun.setter
def ClearCorrectionsBeforeRun(self, newVal:bool) -> None:
|
See Also