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