Xceed Chart for WinForms v4.4 Documentation
Inflate Property
Example 


Xceed.Chart.Standard.v4.4 Assembly > Xceed.Chart.Standard Namespace > Backplane Class : Inflate Property
Inflates the backplane width and height in pixels.
Syntax
'Declaration
 
<CategoryAttribute("General")>
<DescriptionAttribute("Inflates the backplane dimensions in pixels.")>
<EditorAttribute(EditorBaseTypeName="System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", EditorTypeName="Xceed.Chart.GraphicsCore.SizeEditor, Xceed.Chart.GraphicsCore.v4.4, Version=4.4.100.0, Culture=neutral, PublicKeyToken=ba83ff368b7563c6")>
Public Property Inflate As SizeF
'Usage
 
Dim instance As Backplane
Dim value As SizeF
 
instance.Inflate = value
 
value = instance.Inflate
[Category("General")]
[Description("Inflates the backplane dimensions in pixels.")]
[Editor(EditorBaseTypeName="System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", EditorTypeName="Xceed.Chart.GraphicsCore.SizeEditor, Xceed.Chart.GraphicsCore.v4.4, Version=4.4.100.0, Culture=neutral, PublicKeyToken=ba83ff368b7563c6")]
public SizeF Inflate {get; set;}
Remarks
The control automatically determines the dimensions of the backplane depending on the object it is attached to. For example if you have a text object the control will calculate the bounding rectangle of the text and then modify the backplane dimensions so that they match the text bounding rectangle. You can additionally inflate or deflate these dimensions by using the Inflate property. The inflate is always specified in device units (pixels).
Example
Dim backplane As Backplane =  someTextProps.Backplane 
backplane.Inflate = New SizeF(4, 4) ' increase the width and height of the backplane with 4 pixels
Backplane backplane = someTextProps.Backplane;
backplane.Inflate = new SizeF(4, 4); // increase the width and height of the backplane with 4 pixels
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

Backplane Class
Backplane Members