Description
The maximum number of iterations. Dimensionless.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property MaxIterations() As Integer
|
[C#] |
---|
public int MaxIterations {get; set;}
|
[Managed C++] |
---|
public: __property int get_MaxIterations(); public: __property void set_MaxIterations(
int
);
|
[Unmanaged C++] |
---|
public: HRESULT get_MaxIterations(
long * pVal
);
public: HRESULT put_MaxIterations(
long InVal
);
|
[Java] |
---|
public int getMaxIterations();
public void setMaxIterations(
int
);
|
[Python - STK API] |
---|
@property
def MaxIterations(self) -> int:
@MaxIterations.setter
def MaxIterations(self, InVal:int) -> None:
|
See Also