'Declaration Public Enum SpreadPanningMode Inherits System.Enum
'Usage Dim instance As SpreadPanningMode
public enum SpreadPanningMode : System.Enum
'Declaration Public Enum SpreadPanningMode Inherits System.Enum
'Usage Dim instance As SpreadPanningMode
public enum SpreadPanningMode : System.Enum
Member | Description |
---|---|
Both | The FpSpread control scrolls horizontally and vertically. |
HorizontalOnly | The FpSpread control only scrolls horizontally. |
HorizontalOrVertical | The FpSpread control scrolls horizontally or vertically. |
None | The FpSpread does not respond to pan input. |
VerticalOnly | The FpSpread control only scrolls vertically. |
fpSpread1.PanningMode = FarPoint.Win.Spread.SpreadPanningMode.HorizontalOrVertical; private void fpSpread1_PanningModeChanged(object sender, EventArgs e) { listBox1.Items.Add("Changed"); }
fpSpread1.PanningMode = FarPoint.Win.Spread.SpreadPanningMode.HorizontalOrVertical Private Sub fpSpread1_PanningModeChanged(sender As Object, e As EventArgs) Handles fpSpread1.PanningModeChanged ListBox1.Items.Add("Changed") End Sub
System.Object
System.ValueType
System.Enum
FarPoint.Win.Spread.SpreadPanningMode