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


In This Topic
    FillStyle Property (NBackplaneStyle)
    In This Topic
    The fill effect applied on the backplane.
    Syntax
    'Declaration
     
    
    <System.ComponentModel.CategoryAttribute("Appearance")>
    <System.ComponentModel.DescriptionAttribute("The fill effect applied on the backplane.")>
    Public Property FillStyle As NFillStyle
    'Usage
     
    
    Dim instance As NBackplaneStyle
    Dim value As NFillStyle
     
    instance.FillStyle = value
     
    value = instance.FillStyle
    [System.ComponentModel.Category("Appearance")]
    [System.ComponentModel.Description("The fill effect applied on the backplane.")]
    public NFillStyle FillStyle {get; set;}
    Remarks
    Gives you access to the NFillEffect object controlling the fill effect applied on the backplane.
    Example
    The following code applies a gradient on the backplane:
    Dim backplane As NBackplane =  someTextProps.Backplane 
    backplane.FillEffect.SetPredefinedAdvancedGradient(AdvancedGradientScheme.Ocean2, 11)
    NBackplane backplane = someTextProps.Backplane;
    backplane.FillEffect.SetPredefinedAdvancedGradient(AdvancedGradientScheme.Ocean2, 11);
    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