FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > ActiveSheetChangingEventArgs クラス : Cancel プロパティ |
'Declaration Public Property Cancel As Boolean
'使用法 Dim instance As ActiveSheetChangingEventArgs Dim value As Boolean instance.Cancel = value value = instance.Cancel
public bool Cancel {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