Spread Windows Forms 13.0 Product Documentation
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / DragDropBlockEventArgs Class / Action Property
Example


In This Topic
    Action Property (DragDropBlockEventArgs)
    In This Topic
    Gets or sets whether the source range is copied or moved.
    Syntax
    'Declaration
     
    Public Property Action As Integer
    'Usage
     
    Dim instance As DragDropBlockEventArgs
    Dim value As Integer
     
    instance.Action = value
     
    value = instance.Action
    public int Action {get; set;}

    Property Value

    Integer index of action: 0 to move; 1 to copy
    Example
    private void fpSpread1_DragDropBlock(object sender, FarPoint.Win.Spread.DragDropBlockEventArgs e)
    {
        if (e.Action == 0)
        {
            textBox1.Text = "The selection was moved";
        }
        else if (e.Action == 1) 
        {
            textBox1.Text = "The selection was copied";
        }
    }
    
    Private Sub FpSpread1_DragDropBlock(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.DragDropBlockEventArgs) Handles
    FpSpread1.DragDropBlock
        If e.Action = 0 Then
            TextBox1.Text = "The selection was moved"
        ElseIf e.Action = 1 Then
            TextBox1.Text = "The selection was copied"
        End If
    End Sub
    
    See Also