Copyright © 2003-2005 MultiMedia Soft 
Return to index  
 
LightDirection property 
 
Type
[Visual Basic] 
Public Property LightDirection As Ctl3d.LightDirections 
 
[C#] 
public Ctl3d.LightDirections LightDirection {get; set;} 
 
[C++] 
public: __property Ctl3d.LightDirections get_LightDirection (); 
public: __property void set_LightDirection (Ctl3d.LightDirections);
 
 
Remarks
The direction from which the light impacts the control. 
Supported values are the following: 
Mnemonic constant
Value
Meaning
LightDirections.NorthWest
0 (default)
Light coming from North-West: this is the standard default for the Windows operating system. 
LightDirections.North
1
Light coming from North 
LightDirections.NorthEast
2
Light coming from North-East 
LightDirections.East
3
Light coming from East 
LightDirections.SouthEast
4
Light coming from South-East 
LightDirections.South
5
Light coming from South 
LightDirections.SouthWest
6
Light coming from South-West 
LightDirections.West
7
Light coming from West 
LightDirections.Above
8
Light coming from above 
 
For further information about surface lighting, see the How to manage surface lighting section.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Copyright © 2003-2005 MultiMedia Soft 
Return to index