Description
The EvalFunction - custom function to call at every thrust evaluation.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property EvalFunctionName() As String
|
| [C#] |
|---|
public string EvalFunctionName {get; set;}
|
| [Managed C++] |
|---|
public: __property String __gc ^ get_EvalFunctionName(); public: __property void set_EvalFunctionName(
String __gc ^
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_EvalFunctionName(
BSTR * pEvalFunction
);
public: HRESULT put_EvalFunctionName(
BSTR EvalFunction
);
|
| [Java] |
|---|
public String getEvalFunctionName();
public void setEvalFunctionName(
String
);
|
| [Python - STK API] |
|---|
@property
def EvalFunctionName(self) -> str:
@EvalFunctionName.setter
def EvalFunctionName(self, EvalFunction:str) -> None:
|
See Also