Description
The lower range limit in Distance Units.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property LowerLimit() As Double
|
| [C#] |
|---|
public double LowerLimit {get; set;}
|
| [Managed C++] |
|---|
public: __property double get_LowerLimit(); public: __property void set_LowerLimit(
double
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_LowerLimit(
double * pVal
);
public: HRESULT put_LowerLimit(
double InVal
);
|
| [Java] |
|---|
public double getLowerLimit();
public void setLowerLimit(
double
);
|
| [Python - STK API] |
|---|
@property
def LowerLimit(self) -> float:
@LowerLimit.setter
def LowerLimit(self, InVal:float) -> None:
|
See Also