FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > ActiveSheetChangingEventArgs クラス : 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;}
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