FarPoint.Win.Spread
Count Property
See Also  Example
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > DragMoveCompletedEventArgs Class : Count Property


Gets the number of columns or rows being moved

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property Count As Integer
Visual Basic (Usage)Copy Code
Dim instance As DragMoveCompletedEventArgs
Dim value As Integer
 
value = instance.Count
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 BasicCopy 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