PowerTools SPREAD for Windows Forms 8.0J
SelectionChanged イベント (FpSpread)


シート上のセルの選択が変更されたときに発生します。
構文
'Declaration
 
Public Event SelectionChanged As SelectionChangedEventHandler
'使用法
 
Dim instance As FpSpread
Dim handler As SelectionChangedEventHandler
 
AddHandler instance.SelectionChanged, handler
public event SelectionChangedEventHandler SelectionChanged
イベント データ

イベント ハンドラが、このイベントに関連するデータを含む、SelectionChangedEventArgs 型の引数を受け取りました。次の SelectionChangedEventArgs プロパティには、このイベントの固有の情報が記載されます。

プロパティ説明
Range選択を含むセルの範囲を取得します。  
View選択範囲を含むビューを取得します。  
解説

このイベントは、シートの選択範囲が変更されたときにOnSelectionChangedメソッドによって生成されます。

このイベントは、ユーザーがマウスをドラッグするか[Shift]キーと矢印キーを同時に押して選択範囲を拡張したとき、選択されたセル範囲が変更されるたびに発生します。

個々のイベント引数の詳細については、SelectionChangedEventArgsメンバを参照してください。

次のサンプルコードは、イベントを発生させます。
private void fpSpread1_SelectionChanged(object sender, FarPoint.Win.Spread.SelectionChangedEventArgs e)
{
     FarPoint.Win.Spread.Model.CellRange cr;
     cr = e.View.Sheets[0].GetSelection(0);
     Label1.Text = "The first column in the selection is " + cr.Column + " and the first row is " + cr.Row;
}
Private Sub FpSpread1_SelectionChanged(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.SelectionChangedEventArgs) Handles
FpSpread1.SelectionChanged
     Dim cr As FarPoint.Win.Spread.Model.CellRange
     cr = e.View.Sheets(0).GetSelection(0)
     Label1.Text = "The first column in the selection is " & cr.Column & " and the first row is " & cr.Row
End Sub
参照

FpSpread クラス
FpSpread メンバ
SelectionChanging イベント
SelectionChangedEventArgs クラス

 

 


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