Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Graphics Namespace / LightSettings Class / Specular Property
Example

In This Topic
    Specular Property (LightSettings)
    In This Topic
    Gets or sets the light specular color.
    Syntax
    'Declaration
     
    Public Property Specular As Color
    public Color Specular {get; set;}
    Example
    The following code fragment demonstrates how to change the light specular color at run-time.
    myViewport.Light2.Specular = Color.DimGray;
    myViewport.ProcessLightAttributes();
    MyViewport.Light2.Specular = Color.DimGray
    MyViewport.ProcessLightAttributes()
    See Also