PowerTools SPREAD for Windows Forms 8.0J
ActivatedSheetIndex プロパティ


新しいアクティブシートのインデックスを取得または設定します。
構文
'Declaration
 
Public Property ActivatedSheetIndex As Integer
'使用法
 
Dim instance As ActiveSheetChangingEventArgs
Dim value As Integer
 
instance.ActivatedSheetIndex = value
 
value = instance.ActivatedSheetIndex
public int ActivatedSheetIndex {get; set;}

プロパティ値

新しいアクティブ シートのインデックスを表す Integer
次のサンプルコードは、3つのシートを含むワークブックでこのプロパティを使用する方法を示します。ActiveSheetChangingイベントでは、3つ目のシートがクリックされた場合、イベントがキャンセルされてフォーカスが前のシートに残ります。
private void fpSpread1_ActiveSheetChanging(object sender, FarPoint.Win.Spread.ActiveSheetChangingEventArgs e)
{
     if (e.ActivatedSheetIndex == 2)
     {
          e.Cancel = true;
     }
}
Private Sub FpSpread1_ActiveSheetChanging(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.ActiveSheetChangingEventArgs)
Handles FpSpread1.ActiveSheetChanging
   If e.ActivatedSheetIndex = 2 Then
      e.Cancel = True
   End If
End Sub
参照

ActiveSheetChangingEventArgs クラス
ActiveSheetChangingEventArgs メンバ

 

 


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