Gets the number of columns or rows being moved
Syntax
| Visual Basic (Declaration) | |
|---|
Public ReadOnly Property Count As Integer |
| C# | |
|---|
public int Count {get;} |
Return Value
the number of columns or rows being moved
Example
This example returns the Count property.
| C# | Copy Code |
|---|
private void Form1_Load(object
sender, EventArgs e)
{
fpSpread1.AllowColumnMove = true;
fpSpread1.AllowColumnMoveMultiple = true;
}
private void fpSpread1_ColumnDragMoveCompleted(object sender, FarPoint.Win.Spread.DragMoveCompletedEventArgs
e)
{
listBox1.Items.Add(e.Count.ToString());
} |
| Visual Basic | Copy Code |
|---|
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
FpSpread1.AllowColumnMove = True
FpSpread1.AllowColumnMoveMultiple = True
End Sub
Private Sub FpSpread1_ColumnDragMoveCompleted(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.DragMoveCompletedEventArgs) Handles FpSpread1.ColumnDragMoveCompleted
ListBox1.Items.Add(e.Count.ToString())
End Sub |
See Also