Description
If true, Astrogator will automatically clear all target iteration graphics of the previous run - in all graphics windows - before the current run draws new calculations. If selected, this process will be performed whether or not there are any open graphics windows, which may result in a delay before the new run is begun that has no apparent cause.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property ClearDWCGraphicsBeforeEachRun() As Boolean
|
[C#] |
---|
public bool ClearDWCGraphicsBeforeEachRun {get; set;}
|
[Managed C++] |
---|
public: __property bool get_ClearDWCGraphicsBeforeEachRun(); public: __property void set_ClearDWCGraphicsBeforeEachRun(
bool
);
|
[Unmanaged C++] |
---|
public: HRESULT get_ClearDWCGraphicsBeforeEachRun(
VARIANT_BOOL * pVal
);
public: HRESULT put_ClearDWCGraphicsBeforeEachRun(
VARIANT_BOOL newVal
);
|
[Java] |
---|
public bool getClearDWCGraphicsBeforeEachRun();
public void setClearDWCGraphicsBeforeEachRun(
bool
);
|
[Python - STK API] |
---|
@property
def ClearDWCGraphicsBeforeEachRun(self) -> bool:
@ClearDWCGraphicsBeforeEachRun.setter
def ClearDWCGraphicsBeforeEachRun(self, newVal:bool) -> None:
|
See Also