FarPoint.Win.Spread アセンブリ > FarPoint.Win.Spread 名前空間 > AdvanceEventArgs クラス : Cancel プロパティ |
private void fpSpread1_Advance(object sender, FarPoint.Win.Spread.AdvanceEventArgs e) { if (e.AdvanceNext == true) { MessageBox.Show("We're going to the next control!!"); } else e.Cancel = false; }
Private Sub FpSpread1_Advance(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.AdvanceEventArgs) Handles FpSpread1.Advance If e.AdvanceNext = True Then MessageBox.Show("We're going to the next control!!") Else e.Cancel = False End If End Sub