'宣言 Public Event BeforeCalculateImmediate As BeforeCalculateImmediateEventHandler
public event BeforeCalculateImmediateEventHandler BeforeCalculateImmediate
イベント ハンドラが、このイベントに関連するデータを含む、OnCalculateImmediateEventArgs 型の引数を受け取りました。次の OnCalculateImmediateEventArgs プロパティには、このイベントの固有の情報が記載されます。
プロパティ | 解説 |
---|---|
Cancel System.ComponentModel.CancelEventArgsから継承されます。 | |
CurrentValue | CurrentValueを取得または設定します。 |
CurrentValueDecimal | 現在の値を小数として取得または設定します。 |
Operation | 演算文字列。この値は、ユーザーが変更したり、操作したりできます。 |
Private Sub UltraCalculatorDropDown1_BeforeCalculateImmediate(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinEditors.UltraWinCalc.OnCalculateImmediateEventArgs) Handles UltraCalculatorDropDown1.BeforeCalculateImmediate ' This event occurs before an immediate calculation has taken place. ' User clicks the sqr button, or any button with type 'Immediate' The ' event itself is cancellable. Debug.WriteLine("BeforeCalculateImmediate: Cancel = " + e.Cancel.ToString()) Debug.WriteLine(String.Format("Params: Operation {0}, Current Value {1}", e.Operation, e.CurrentValue)) End Sub
using System.Diagnostics; private void ultraCalculatorDropDown1_BeforeCalculateImmediate(object sender, Infragistics.Win.UltraWinEditors.UltraWinCalc.OnCalculateImmediateEventArgs e) { // This event occurs before an immediate calculation has taken place. // User clicks the sqr button, or any button with type 'Immediate' The // event itself is cancellable. Debug.WriteLine("BeforeCalculateImmediate: Cancel = " + e.Cancel.ToString()); Debug.WriteLine(string.Format("Params: Operation {0}, Current Value {1}",e.Operation, e.CurrentValue)); }