Description
If true, target sequences can be set to produce 'run history' log files for differential corrector profiles. By default, a target sequence does not produce a log file.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property EnableLogging() As Boolean
|
[C#] |
---|
public bool EnableLogging {get; set;}
|
[Managed C++] |
---|
public: __property bool get_EnableLogging(); public: __property void set_EnableLogging(
bool
);
|
[Unmanaged C++] |
---|
public: HRESULT get_EnableLogging(
VARIANT_BOOL * pVal
);
public: HRESULT put_EnableLogging(
VARIANT_BOOL newVal
);
|
[Java] |
---|
public bool getEnableLogging();
public void setEnableLogging(
bool
);
|
[Python - STK API] |
---|
@property
def EnableLogging(self) -> bool:
@EnableLogging.setter
def EnableLogging(self, newVal:bool) -> None:
|
See Also