Description
Gets or sets the lower translucency value for the image when use altitude based translucency is set to . When the altitude of the viewer is at or below altitude based translucency lower altitude, the image will have the translucency specified by this property, and will be linearly interpolated at altitude values between altitude based translucency lower altitude and altitude based translucency upper altitude.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property AltitudeBasedTranslucencyLowerTranslucency() As Single
|
[C#] |
---|
public float AltitudeBasedTranslucencyLowerTranslucency {get; set;}
|
[Managed C++] |
---|
public: __property float get_AltitudeBasedTranslucencyLowerTranslucency(); public: __property void set_AltitudeBasedTranslucencyLowerTranslucency(
float
);
|
[Unmanaged C++] |
---|
public: HRESULT get_AltitudeBasedTranslucencyLowerTranslucency(
float * pRetVal
);
public: HRESULT put_AltitudeBasedTranslucencyLowerTranslucency(
float AltitudeBasedTranslucencyLowerTranslucency
);
|
[Java] |
---|
public float getAltitudeBasedTranslucencyLowerTranslucency();
public void setAltitudeBasedTranslucencyLowerTranslucency(
float
);
|
[Python - STK API] |
---|
@property
def AltitudeBasedTranslucencyLowerTranslucency(self) -> float:
@AltitudeBasedTranslucencyLowerTranslucency.setter
def AltitudeBasedTranslucencyLowerTranslucency(self, AltitudeBasedTranslucencyLowerTranslucency:float) -> None:
|
See Also