Xceed Chart for WinForms v4.4 Documentation
StandardFrame Property (Watermark)
Example 


Xceed.Chart.Standard.v4.4 Assembly > Xceed.Chart.Standard Namespace > Watermark Class : StandardFrame Property
Gives access to the StandardFrame object controlling the standard frame of the watermark.
Syntax
'Declaration
 
<DescriptionAttribute("Controls the standard frame of the watermark.")>
<EditorAttribute(EditorBaseTypeName="System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", EditorTypeName="Xceed.Chart.Standard.ImageAndStandardFrameTypeEditor, Xceed.Chart.Standard.v4.4, Version=4.4.100.0, Culture=neutral, PublicKeyToken=ba83ff368b7563c6")>
<CategoryAttribute("Appearance")>
Public Property StandardFrame As StandardFrame
'Usage
 
Dim instance As Watermark
Dim value As StandardFrame
 
instance.StandardFrame = value
 
value = instance.StandardFrame
[Description("Controls the standard frame of the watermark.")]
[Editor(EditorBaseTypeName="System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", EditorTypeName="Xceed.Chart.Standard.ImageAndStandardFrameTypeEditor, Xceed.Chart.Standard.v4.4, Version=4.4.100.0, Culture=neutral, PublicKeyToken=ba83ff368b7563c6")]
[Category("Appearance")]
public StandardFrame StandardFrame {get; set;}
Remarks
This type of frame resembles the standard Windows frames and can show all types of frames specified by the style of the window (raised, sunken, single etc).
Example
The following code configures a Windows-like backplane frame with an inner and outer bevel.
watermark.StandardFrame.OuterStyle = BevelStyle.Sunken
 watermark.StandardFrame.InnerStyle = BevelStyle.Sunken
 watermark.StandardFrame.BevelWidth = 1
watermark.StandardFrame.OuterStyle = BevelStyle.Sunken;
 watermark.StandardFrame.InnerStyle = BevelStyle.Sunken;
 watermark.StandardFrame.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

Reference

Watermark Class
Watermark Members