PowerTools SPREAD for Windows Forms 8.0J
DragDropBlockCompletedEventArgs コンストラクタ


選択元のビュー
ドラッグ元範囲の左上セルの行インデックス
ドラッグ元範囲の左上セルの列インデックス
ドラッグ元範囲の右下セルの行インデックス
ドラッグ元範囲の右下セルの列インデックス
ドロップ先範囲の左上セルの行インデックス
ドロップ先範囲の左上セルの列インデックス
ドロップ先範囲の右下セルの行インデックス
ドロップ先範囲の右下セルの列インデックス
ドロップ先範囲がデータを含むかどうか
ドラッグ元範囲がコピーされるか移動されるか
コピーまたは移動するのはデータか書式か(または両方)
DragDropBlockCompleted イベント引数を含む新しいオブジェクトを作成します。
構文
'Declaration
 
Public Function New( _
   ByVal view As SpreadView, _
   ByVal rowBegin As Integer, _
   ByVal columnBegin As Integer, _
   ByVal rowEnd As Integer, _
   ByVal columnEnd As Integer, _
   ByVal destRowBegin As Integer, _
   ByVal destColumnBegin As Integer, _
   ByVal destRowEnd As Integer, _
   ByVal destColumnEnd As Integer, _
   ByVal overwrite As Boolean, _
   ByVal action As Integer, _
   ByVal dataOnly As Boolean _
)
'使用法
 
Dim view As SpreadView
Dim rowBegin As Integer
Dim columnBegin As Integer
Dim rowEnd As Integer
Dim columnEnd As Integer
Dim destRowBegin As Integer
Dim destColumnBegin As Integer
Dim destRowEnd As Integer
Dim destColumnEnd As Integer
Dim overwrite As Boolean
Dim action As Integer
Dim dataOnly As Boolean
 
Dim instance As New DragDropBlockCompletedEventArgs(view, rowBegin, columnBegin, rowEnd, columnEnd, destRowBegin, destColumnBegin, destRowEnd, destColumnEnd, overwrite, action, dataOnly)
public DragDropBlockCompletedEventArgs( 
   SpreadView view,
   int rowBegin,
   int columnBegin,
   int rowEnd,
   int columnEnd,
   int destRowBegin,
   int destColumnBegin,
   int destRowEnd,
   int destColumnEnd,
   bool overwrite,
   int action,
   bool dataOnly
)

パラメータ

view
選択元のビュー
rowBegin
ドラッグ元範囲の左上セルの行インデックス
columnBegin
ドラッグ元範囲の左上セルの列インデックス
rowEnd
ドラッグ元範囲の右下セルの行インデックス
columnEnd
ドラッグ元範囲の右下セルの列インデックス
destRowBegin
ドロップ先範囲の左上セルの行インデックス
destColumnBegin
ドロップ先範囲の左上セルの列インデックス
destRowEnd
ドロップ先範囲の右下セルの行インデックス
destColumnEnd
ドロップ先範囲の右下セルの列インデックス
overwrite
ドロップ先範囲がデータを含むかどうか
action
ドラッグ元範囲がコピーされるか移動されるか
dataOnly
コピーまたは移動するのはデータか書式か(または両方)
fpSpread1.DragDropBlockCompleted += new FarPoint.Win.Spread.DragDropBlockCompletedEventHandler(fpSpread1DragDropBlockCompleted);


private void fpSpread1DragDropBlockCompleted(object sender, FarPoint.Win.Spread.DragDropBlockCompletedEventArgs e) 
{ 
    fpSpread1.ActiveSheet.Columns[e.ColumnEnd].BackColor = Color.Yellow;
}
Dim eh As FarPoint.Win.Spread.DragDropBlockCompletedEventHandler = AddressOf FpSpread1DragDropBlockCompleted
AddHandler FpSpread1.DragDropBlockCompleted, eh

Private Sub FpSpread1DragDropBlockCompleted(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.DragDropBlockCompletedEventArgs)
Handles FpSpread1.DragDropBlockCompleted
    FpSpread1.ActiveSheet.Columns(e.ColumnEnd).BackColor = Color.Yellow
End Sub
参照

DragDropBlockCompletedEventArgs クラス
DragDropBlockCompletedEventArgs メンバ

 

 


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