Description
Lower bound for a boundary element.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property LowerBound() As Double
|
[C#] |
---|
public double LowerBound {get; set;}
|
[Managed C++] |
---|
public: __property double get_LowerBound(); public: __property void set_LowerBound(
double
);
|
[Unmanaged C++] |
---|
public: HRESULT get_LowerBound(
double * pVal
);
public: HRESULT put_LowerBound(
double newVal
);
|
[Java] |
---|
public double getLowerBound();
public void setLowerBound(
double
);
|
[Python - STK API] |
---|
@property
def LowerBound(self) -> float:
@LowerBound.setter
def LowerBound(self, newVal:float) -> None:
|
See Also