Description
The PreFunction - custom function to call before any propagation begins.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property PreFunctionName() As String
|
[C#] |
---|
public string PreFunctionName {get; set;}
|
[Managed C++] |
---|
public: __property String __gc ^ get_PreFunctionName(); public: __property void set_PreFunctionName(
String __gc ^
);
|
[Unmanaged C++] |
---|
public: HRESULT get_PreFunctionName(
BSTR * pPreFunction
);
public: HRESULT put_PreFunctionName(
BSTR PreFunction
);
|
[Java] |
---|
public String getPreFunctionName();
public void setPreFunctionName(
String
);
|
[Python - STK API] |
---|
@property
def PreFunctionName(self) -> str:
@PreFunctionName.setter
def PreFunctionName(self, PreFunction:str) -> None:
|
See Also