Description
Get the absolute tolerance which determines the distance between the value and the boundaries within which the value is considered converged.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property AbsoluteTolerance() As Double
|
[C#] |
---|
public double AbsoluteTolerance {get; set;}
|
[Managed C++] |
---|
public: __property double get_AbsoluteTolerance(); public: __property void set_AbsoluteTolerance(
double
);
|
[Unmanaged C++] |
---|
public: HRESULT get_AbsoluteTolerance(
double * pRetVal
);
public: HRESULT put_AbsoluteTolerance(
double AbsoluteTolerance
);
|
[Java] |
---|
public double getAbsoluteTolerance();
public void setAbsoluteTolerance(
double
);
|
See Also