Nevron .NET Vision
Nevron.Chart Namespace / NHighLowSeries Class / HighBorderStyle Property
Example


In This Topic
    HighBorderStyle Property
    In This Topic
    Gets or sets the stroke style applied to the high area borders.
    Syntax
    'Declaration
     
    
    <System.ComponentModel.CategoryAttribute("Styles")>
    <System.ComponentModel.DescriptionAttribute("Gets or sets the stroke style applied to the high area borders")>
    <System.ComponentModel.EditorAttribute(Nevron.Editors.NStrokeStyleTypeEditorNoAutomatic, System.Drawing.Design.UITypeEditor)>
    Public Property HighBorderStyle As NStrokeStyle
    'Usage
     
    
    Dim instance As NHighLowSeries
    Dim value As NStrokeStyle
     
    instance.HighBorderStyle = value
     
    value = instance.HighBorderStyle
    [System.ComponentModel.Category("Styles")]
    [System.ComponentModel.Description("Gets or sets the stroke style applied to the high area borders")]
    [System.ComponentModel.Editor(Nevron.Editors.NStrokeStyleTypeEditorNoAutomatic, System.Drawing.Design.UITypeEditor)]
    public NStrokeStyle HighBorderStyle {get; set;}
    Remarks
    High areas are areas for which the high value is larger than the low value.
    Example
    The following code will display the high areas with green border color.
    highlow.HighBorderStyle.Color= Color.Green;
    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