PowerTools SPREAD for Windows Forms 8.0J
Overwrite プロパティ (DragDropBlockEventArgs)


ドロップ先範囲がデータを含むかどうか(つまり上書きされるかどうか)を取得します。
構文
'Declaration
 
Public ReadOnly Property Overwrite As Boolean
'使用法
 
Dim instance As DragDropBlockEventArgs
Dim value As Boolean
 
value = instance.Overwrite
public bool Overwrite {get;}

プロパティ値

Boolean:上書きする場合は True、それ以外の場合は False
private void fpSpread1_DragDropBlock(object sender, FarPoint.Win.Spread.DragDropBlockEventArgs e)
{
    if (e.Overwrite == true)
    {
        e.Cancel = true;
    }
}
Private Sub FpSpread1_DragDropBlock(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.DragDropBlockEventArgs) Handles
FpSpread1.DragDropBlock
    If e.Overwrite = True Then
        e.Cancel = True
    End If
End Sub
参照

DragDropBlockEventArgs クラス
DragDropBlockEventArgs メンバ

 

 


© 2004-2015, GrapeCity inc. All rights reserved.