Description
The UpdateFunction - custom function to call at the beginning of each integration step.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property UpdateFunctionName() As String
|
[C#] |
---|
public string UpdateFunctionName {get; set;}
|
[Managed C++] |
---|
public: __property String __gc ^ get_UpdateFunctionName(); public: __property void set_UpdateFunctionName(
String __gc ^
);
|
[Unmanaged C++] |
---|
public: HRESULT get_UpdateFunctionName(
BSTR * pUpdateFunction
);
public: HRESULT put_UpdateFunctionName(
BSTR UpdateFunction
);
|
[Java] |
---|
public String getUpdateFunctionName();
public void setUpdateFunctionName(
String
);
|
[Python - STK API] |
---|
@property
def UpdateFunctionName(self) -> str:
@UpdateFunctionName.setter
def UpdateFunctionName(self, UpdateFunction:str) -> None:
|
See Also