'Declaration Public Enum Moving Inherits System.Enum
'Usage Dim instance As Moving
public enum Moving : System.Enum
'Declaration Public Enum Moving Inherits System.Enum
'Usage Dim instance As Moving
public enum Moving : System.Enum
Member | Description |
---|---|
Horizontal | Allows the user to horizontally move the object |
HorizontalAndVertical | Allows the user to move the object both horizontally and vertically |
None | Does not allow user movement |
Vertical | Allows the user to vertically move the object |
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;
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
System.Object
System.ValueType
System.Enum
FarPoint.Win.Spread.DrawingSpace.Moving