Description
The custom function called before computing, before each segment runs, and before reporting.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property ResetFunctionName() As String
|
[C#] |
---|
public string ResetFunctionName {get; set;}
|
[Managed C++] |
---|
public: __property String __gc ^ get_ResetFunctionName(); public: __property void set_ResetFunctionName(
String __gc ^
);
|
[Unmanaged C++] |
---|
public: HRESULT get_ResetFunctionName(
BSTR * pVal
);
public: HRESULT put_ResetFunctionName(
BSTR InVal
);
|
[Java] |
---|
public String getResetFunctionName();
public void setResetFunctionName(
String
);
|
[Python - STK API] |
---|
@property
def ResetFunctionName(self) -> str:
@ResetFunctionName.setter
def ResetFunctionName(self, InVal:str) -> None:
|
See Also