Description
Set initial boundary conditions from initial guess.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property SetFromFinalGuess() As Boolean
|
[C#] |
---|
public bool SetFromFinalGuess {get; set;}
|
[Managed C++] |
---|
public: __property bool get_SetFromFinalGuess(); public: __property void set_SetFromFinalGuess(
bool
);
|
[Unmanaged C++] |
---|
public: HRESULT get_SetFromFinalGuess(
VARIANT_BOOL * pVal
);
public: HRESULT put_SetFromFinalGuess(
VARIANT_BOOL newVal
);
|
[Java] |
---|
public bool getSetFromFinalGuess();
public void setSetFromFinalGuess(
bool
);
|
[Python - STK API] |
---|
@property
def SetFromFinalGuess(self) -> bool:
@SetFromFinalGuess.setter
def SetFromFinalGuess(self, newVal:bool) -> None:
|
See Also