FarPoint.Win.Spread
Sizing Enumeration
Example  See Also 
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.DrawingSpace Namespace : Sizing Enumeration


Specifies the sizing aspects of the object.

Syntax

Visual Basic (Declaration) 
Public Enum Sizing 
   Inherits Enum
Visual Basic (Usage)Copy Code
Dim instance As Sizing
C# 
public enum Sizing : Enum 

Members

MemberDescription
None Does not allow user sizing
Height Allows user to size the height of the object
Width Allows user to size the width of the object
HeightAndWidth Allows user to size both the height of the object

Example

This example sets the Sizing enumeration.
C#Copy Code
FarPoint.Win.Spread.Chart.SpreadChart chart;
chart = fpSpread1.Sheets[0].AddChart(0, 0, typeof(FarPoint.Win.Chart.BarSeries), 400, 400, 200, 80, FarPoint.Win.Chart.ChartViewType.View2D, true);
chart.Locked = true;
//chart.CanSize = FarPoint.Win.Spread.DrawingSpace.Sizing.None;
//chart.CanMove = FarPoint.Win.Spread.DrawingSpace.Moving.Horizontal;
Visual BasicCopy Code
Dim chart As FarPoint.Win.Spread.Chart.SpreadChart
Dim range As New FarPoint.Win.Spread.Model.CellRange(0, 0, 7, 4)
chart = FpSpread1.Sheets(0).AddChart(range, GetType(FarPoint.Win.Chart.BarSeries), 400, 300, 300, 80, FarPoint.Win.Chart.ChartViewType.View3D, False)
chart.Locked = True
'chart.CanSize = FarPoint.Win.Spread.DrawingSpace.Sizing.None
'chart.CanMove = FarPoint.Win.Spread.DrawingSpace.Moving.Horizontal

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         FarPoint.Win.Spread.DrawingSpace.Sizing

See Also