'宣言 Public Event EndExport As EventHandler(Of EndExportEventArgs)
public event EventHandler<EndExportEventArgs> EndExport
イベント ハンドラが、このイベントに関連するデータを含む、EndExportEventArgs 型の引数を受け取りました。次の EndExportEventArgs プロパティには、このイベントの固有の情報が記載されます。
プロパティ | 解説 |
---|---|
Canceled | エクスポート プロセスがキャンセルされた場合は True。 |
EndExportEventArgs.Canceled 引数は、エクスポート プロセスがキャンセルされた場合は True です。
このイベントはエクスポート プロセスが終了した後、つまり他のどのイベントよりも後に発生します。
Imports Infragistics.Documents.Report Imports Infragistics.Win.UltraWinGrid.DocumentExport Private Sub ultraGridDocumentExporter1_EndExport(ByVal sender As System.Object, ByVal e As Infragistics.Win.UltraWinGrid.DocumentExport.EndExportEventArgs) Handles ultraGridDocumentExporter1.EndExport If (e.Canceled) Then MessageBox.Show("The Export was cancelled") Else MessageBox.Show("Export succesful") End If End Sub
using Infragistics.Documents.Report; using Infragistics.Win.UltraWinGrid.DocumentExport; private void ultraGridDocumentExporter1_EndExport(object sender, EndExportEventArgs e) { if (e.Canceled) MessageBox.Show("The Export was cancelled"); else MessageBox.Show("Export succesful"); }