Xceed Chart for WinForms v4.4 Documentation
Xceed.Chart.Standard.v4.4 Assembly / Xceed.Chart.Standard Namespace / Background Class / FrameType Property


In This Topic
    FrameType Property
    In This Topic
    Controls the style of the background frame. The user can choose between standard and image frame or disable the background frame drawing.
    Syntax
    'Declaration
     
    <CategoryAttribute("Frame")>
    <DescriptionAttribute("Controls the type of the background frame.")>
    <DefaultValueAttribute(Mono.Cecil.CustomAttributeArgument)>
    Public Property FrameType As FrameType
    'Usage
     
    Dim instance As Background
    Dim value As FrameType
     
    instance.FrameType = value
     
    value = instance.FrameType
    [Category("Frame")]
    [Description("Controls the type of the background frame.")]
    [DefaultValue(Mono.Cecil.CustomAttributeArgument)]
    public FrameType FrameType {get; set;}
    Remarks

    Xceed Chart for WinForms supports two kinds of background frames. The first one resembles the standard Windows frame and can show all types of frames specified by the style of the window (raised, sunken, single etc). This type of frame is controlled through the StandardFrame property of the Background object. The second type of frame is image (or artistic) and it can come handy for Web or Win XP style applications. This type of frame is controlled through the ImageFrame property of the Background object.

    To choose between the two different frame styles you must modify the FrameType property of the Background object.

    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