Nevron .NET Vision
Nevron.GraphicsCore Namespace / NBackplaneStyle Class / ShadowStyle Property
Example


In This Topic
    ShadowStyle Property (NBackplaneStyle)
    In This Topic
    Controls the backplane shadow.
    Syntax
    'Declaration
     
    
    <System.ComponentModel.CategoryAttribute("Appearance")>
    <System.ComponentModel.DescriptionAttribute("Controls the shadow of the backplane.")>
    Public Property ShadowStyle As NShadowStyle
    'Usage
     
    
    Dim instance As NBackplaneStyle
    Dim value As NShadowStyle
     
    instance.ShadowStyle = value
     
    value = instance.ShadowStyle
    [System.ComponentModel.Category("Appearance")]
    [System.ComponentModel.Description("Controls the shadow of the backplane.")]
    public NShadowStyle ShadowStyle {get; set;}
    Example
    The following code modifies the color of the legend shadow.
    Dim legend As NLegend = CType((NChartControl.Legends(0)), NLegend)
    legend.Backplane.Shadow.Color = Color.Blue
    NLegend legend = (NLegend)(NChartControl.Legends[0]);
    legend.Backplane.ShadowStyle.Color = Color.Blue;
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also