Spread Windows Forms 13.0 Product Documentation
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / DragMoveEventArgs Class / Count Property
Example


In This Topic
    Count Property (DragMoveEventArgs)
    In This Topic
    Gets the number of columns or rows to move.
    Syntax
    'Declaration
     
    Public ReadOnly Property Count As Integer
    'Usage
     
    Dim instance As DragMoveEventArgs
    Dim value As Integer
     
    value = instance.Count
    public int Count {get;}
    Example
    This example returns the column count.
    private void Form1_Load(object sender, EventArgs e)
            {
                fpSpread1.AllowColumnMove = true;     
                fpSpread1.AllowColumnMoveMultiple = true;      
            }
           
    private void fpSpread1_ColumnDragMove(object sender, FarPoint.Win.Spread.DragMoveEventArgs e)
            {
                listBox1.Items.Add(e.Count.ToString());
            }
    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_ColumnDragMove(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.DragMoveEventArgs) Handles FpSpread1.ColumnDragMove
            ListBox1.Items.Add(e.Count.ToString())
        End Sub
    See Also