Description
The custom function used to calculate this object's value.
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 * pVal
);
public: HRESULT put_EvalFunctionName(
BSTR InVal
);
|
[Java] |
---|
public String getEvalFunctionName();
public void setEvalFunctionName(
String
);
|
[Python - STK API] |
---|
@property
def EvalFunctionName(self) -> str:
@EvalFunctionName.setter
def EvalFunctionName(self, InVal:str) -> None:
|
See Also