Description
If true, components or segments that are modified by a target sequence will be restored to their nominal values as soon as the target sequence completes its run; otherwise, modified items will not be restored to nominal values until the entire MCS completes its run.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property UseNominalSettings() As Boolean
|
[C#] |
---|
public bool UseNominalSettings {get; set;}
|
[Managed C++] |
---|
public: __property bool get_UseNominalSettings(); public: __property void set_UseNominalSettings(
bool
);
|
[Unmanaged C++] |
---|
public: HRESULT get_UseNominalSettings(
VARIANT_BOOL * pVal
);
public: HRESULT put_UseNominalSettings(
VARIANT_BOOL InVal
);
|
[Java] |
---|
public bool getUseNominalSettings();
public void setUseNominalSettings(
bool
);
|
[Python - STK API] |
---|
@property
def UseNominalSettings(self) -> bool:
@UseNominalSettings.setter
def UseNominalSettings(self, InVal:bool) -> None:
|
See Also