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

ドロップ先範囲がデータを含むかどうか(つまり上書きされるかどうか)を取得します。
構文
'宣言
 
Public ReadOnly Property Overwrite As Boolean
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 メンバ

 

 


© MESCIUS inc. All rights reserved.