Description
Specifies a translucency of the object
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property UseTranslucency() As Boolean
|
[C#] |
---|
public bool UseTranslucency {get; set;}
|
[Managed C++] |
---|
public: __property bool get_UseTranslucency(); public: __property void set_UseTranslucency(
bool
);
|
[Unmanaged C++] |
---|
public: HRESULT get_UseTranslucency(
VARIANT_BOOL * pVal
);
public: HRESULT put_UseTranslucency(
VARIANT_BOOL UseTranslucency
);
|
[Java] |
---|
public bool getUseTranslucency();
public void setUseTranslucency(
bool
);
|
[Python - STK API] |
---|
@property
def UseTranslucency(self) -> bool:
@UseTranslucency.setter
def UseTranslucency(self, UseTranslucency:bool) -> None:
|
See Also