Description
Gets or sets the local earth temperature.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property LocalEarthTemperature() As Double
|
[C#] |
---|
public double LocalEarthTemperature {get; set;}
|
[Managed C++] |
---|
public: __property double get_LocalEarthTemperature(); public: __property void set_LocalEarthTemperature(
double
);
|
[Unmanaged C++] |
---|
public: HRESULT get_LocalEarthTemperature(
double * pVal
);
public: HRESULT put_LocalEarthTemperature(
double val
);
|
[Java] |
---|
public double getLocalEarthTemperature();
public void setLocalEarthTemperature(
double
);
|
[Python - STK API] |
---|
@property
def LocalEarthTemperature(self) -> float:
@LocalEarthTemperature.setter
def LocalEarthTemperature(self, val:float) -> None:
|
See Also