MESCIUS SPREAD for Windows Forms 15.0J
Action プロパティ (DragDropBlockEventArgs)
使用例 

ドラッグ元範囲がコピーされるか移動されるかを取得または設定します。
構文
'宣言
 
Public Property Action As Integer
public int Action {get; set;}

プロパティ値

アクションのインデックスを表す Integer:移動の場合は、コピーの場合は
使用例
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
参照

DragDropBlockEventArgs クラス
DragDropBlockEventArgs メンバ

 

 


© MESCIUS inc. All rights reserved.