Description
The maximum number of major iterations allowed.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property MaxMajorIterations() As Integer
|
| [C#] |
|---|
public int MaxMajorIterations {get; set;}
|
| [Managed C++] |
|---|
public: __property int get_MaxMajorIterations(); public: __property void set_MaxMajorIterations(
int
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_MaxMajorIterations(
long * pVal
);
public: HRESULT put_MaxMajorIterations(
long newVal
);
|
| [Java] |
|---|
public int getMaxMajorIterations();
public void setMaxMajorIterations(
int
);
|
| [Python - STK API] |
|---|
@property
def MaxMajorIterations(self) -> int:
@MaxMajorIterations.setter
def MaxMajorIterations(self, newVal:int) -> None:
|
See Also