Description
If true, the stopping condition is active.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property Active() As Boolean
|
[C#] |
---|
public bool Active {get; set;}
|
[Managed C++] |
---|
public: __property bool get_Active(); public: __property void set_Active(
bool
);
|
[Unmanaged C++] |
---|
public: HRESULT get_Active(
VARIANT_BOOL * pVal
);
public: HRESULT put_Active(
VARIANT_BOOL newVal
);
|
[Java] |
---|
public bool getActive();
public void setActive(
bool
);
|
[Python - STK API] |
---|
@property
def Active(self) -> bool:
@Active.setter
def Active(self, newVal:bool) -> None:
|
See Also