Description
Minimum altitude of target for which the refraction will be computed unless extrapolation is used. Uses Distance Dimension.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property MinTargetAltitude() As Double
|
[C#] |
---|
public double MinTargetAltitude {get; set;}
|
[Managed C++] |
---|
public: __property double get_MinTargetAltitude(); public: __property void set_MinTargetAltitude(
double
);
|
[Unmanaged C++] |
---|
public: HRESULT get_MinTargetAltitude(
double * pVal
);
public: HRESULT put_MinTargetAltitude(
double dblVal
);
|
[Java] |
---|
public double getMinTargetAltitude();
public void setMinTargetAltitude(
double
);
|
[Python - STK API] |
---|
@property
def MinTargetAltitude(self) -> float:
@MinTargetAltitude.setter
def MinTargetAltitude(self, dblVal:float) -> None:
|
See Also