'宣言 Public Event BeforeScroll As BeforeDayViewScrollEventHandler
public event BeforeDayViewScrollEventHandler BeforeScroll
イベント ハンドラが、このイベントに関連するデータを含む、BeforeDayViewScrollEventArgs 型の引数を受け取りました。次の BeforeDayViewScrollEventArgs プロパティには、このイベントの固有の情報が記載されます。
プロパティ | 解説 |
---|---|
Cancel System.ComponentModel.CancelEventArgsから継承されます。 | |
Date | 最初の表示位置に来た新しい列の日付を返します。 |
Owner | 最初の表示位置に来た新しい列のオーナーを返します。 |
ScrollType | スクロール操作のタイプを返します。 |
TimeSlot | 最初の表示位置に来る新しいタイムスロットを返します。 |
ユーザーによるスクロールバーのクリック、または EnsureTimeSlotVisible(Int32,Boolean) メソッドを呼び出すことによるスクロールバーのプログラムによる再配置のいずれかのために、タイムスロットがスクロールされる前にこのイベントが発生します。
スクロールがイベント引数で渡された後で最初の表示されるタイムスロットの位置を占める TimeSlot オブジェクトへの参照。
イベント引数 Cancel パラメーターを True に設定することによって、スクロール操作はこのイベント内からキャンセルできます。
Imports System.Diagnostics Imports Infragistics.Win Imports Infragistics.Win.UltraWinSchedule Private Sub UltraDayView1_BeforeScroll(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinSchedule.BeforeDayViewScrollEventArgs) Handles UltraDayView1.BeforeScroll Dim dr As DialogResult = MessageBox.Show(Me, "The control is about to scroll, placing the timeslot starting at '" + e.TimeSlot.StartTime.ToShortTimeString() + "' at the top of the time slot display. Do you want to cancel the scroll?", "Cancelable DayView Event", MessageBoxButtons.YesNo) If dr = DialogResult.Yes Then e.Cancel = True End If End Sub
using System.Diagnostics; using Infragistics.Win; using Infragistics.Win.UltraWinSchedule; private void ultraDayView1_BeforeScroll(object sender, Infragistics.Win.UltraWinSchedule.BeforeDayViewScrollEventArgs e) { DialogResult dr = MessageBox.Show(this, "The control is about to scroll, placing the timeslot starting at '" + e.TimeSlot.StartTime.ToShortTimeString() + "' at the top of the time slot display. Do you want to cancel the scroll?", "Cancelable DayView Event", MessageBoxButtons.YesNo); if (dr == DialogResult.Yes) e.Cancel = true; }