Xceed Chart for WinForms v4.4 Documentation
Xceed.Chart.Standard.v4.4 Assembly / Xceed.Chart.Standard Namespace / StandardFrame Class / BevelWidth Property
Example


In This Topic
    BevelWidth Property
    In This Topic
    Controls the width of the inner and the outer bevels.
    Syntax
    'Declaration
     
    <CategoryAttribute("Size")>
    <DescriptionAttribute("Controls the width of the inner and the outer bevels.")>
    <DefaultValueAttribute(1)>
    Public Property BevelWidth As Integer
    'Usage
     
    Dim instance As StandardFrame
    Dim value As Integer
     
    instance.BevelWidth = value
     
    value = instance.BevelWidth
    [Category("Size")]
    [Description("Controls the width of the inner and the outer bevels.")]
    [DefaultValue(1)]
    public int BevelWidth {get; set;}
    Remarks
    The default value is 1.
    Example
    The following example modifies the InnerStyle.
    somedFrame.OuterStyle = BevelStyle.Sunken
    somedFrame.InnerStyle = BevelStyle.Sunken
    somedFrame.BevelWidth = 1
    somedFrame.OuterStyle = BevelStyle.Sunken;
    somedFrame.InnerStyle = BevelStyle.Sunken;
    somedFrame.BevelWidth = 1;
    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