Description
Gets or Sets whether the primitive is lit.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property Lighting() As Boolean
|
[C#] |
---|
public bool Lighting {get; set;}
|
[Managed C++] |
---|
public: __property bool get_Lighting(); public: __property void set_Lighting(
bool
);
|
[Unmanaged C++] |
---|
public: HRESULT get_Lighting(
VARIANT_BOOL * pRetVal
);
public: HRESULT put_Lighting(
VARIANT_BOOL Lighting
);
|
[Java] |
---|
public bool getLighting();
public void setLighting(
bool
);
|
[Python - STK API] |
---|
@property
def Lighting(self) -> bool:
@Lighting.setter
def Lighting(self, Lighting:bool) -> None:
|
See Also