Description
User Calc Object - a User Calculation Object for the highlighted stopping condition. For user-defined stopping conditions, use this field to specify what kind of value you want to stop on.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property UserCalcObjectName() As String
|
[C#] |
---|
public string UserCalcObjectName {get; set;}
|
[Managed C++] |
---|
public: __property String __gc ^ get_UserCalcObjectName(); public: __property void set_UserCalcObjectName(
String __gc ^
);
|
[Unmanaged C++] |
---|
public: HRESULT get_UserCalcObjectName(
BSTR * pVal
);
public: HRESULT put_UserCalcObjectName(
BSTR newVal
);
|
[Java] |
---|
public String getUserCalcObjectName();
public void setUserCalcObjectName(
String
);
|
[Python - STK API] |
---|
@property
def UserCalcObjectName(self) -> str:
@UserCalcObjectName.setter
def UserCalcObjectName(self, newVal:str) -> None:
|
See Also