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