Description
A minimum range. An exception is thrown if the value exceeds the MaximumRange. Applicable only if the range constraint is not used.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property MinimumRange() As Double
|
| [C#] |
|---|
public double MinimumRange {get; set;}
|
| [Managed C++] |
|---|
public: __property double get_MinimumRange(); public: __property void set_MinimumRange(
double
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_MinimumRange(
double * pRetVal
);
public: HRESULT put_MinimumRange(
double MinimumRange
);
|
| [Java] |
|---|
public double getMinimumRange();
public void setMinimumRange(
double
);
|
| [Python - STK API] |
|---|
@property
def MinimumRange(self) -> float:
@MinimumRange.setter
def MinimumRange(self, MinimumRange:float) -> None:
|
See Also