バージョン

BeforeRowsDeletedEventArgs クラス

BeforeRowsDeletedイベントに使用されるイベントパラメーターです。
シンタックス
'宣言
 
Public Class BeforeRowsDeletedEventArgs 
   Inherits System.ComponentModel.CancelEventArgs
public class BeforeRowsDeletedEventArgs : System.ComponentModel.CancelEventArgs 
使用例
Imports Infragistics.Shared
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinGrid

  Private Sub UltraGrid1_BeforeRowsDeleted(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinGrid.BeforeRowsDeletedEventArgs) Handles ultraGrid1.BeforeRowsDeleted

      ' グリッドのメッセージ ボックスの表示を回避します
      e.DisplayPromptMsg = False

      ' カスタム メッセージ ボックスを表示します
      Dim result As DialogResult = System.Windows.Forms.MessageBox.Show( _
              "Deleting " & e.Rows.Length.ToString() & " row(s). Continue ?", _
              "Delete rows?", _
              System.Windows.Forms.MessageBoxButtons.YesNo, _
              System.Windows.Forms.MessageBoxIcon.Question)

      ' メッセージ ボックスで [いいえ] がクリックされた場合、行の削除をキャンセルします
      If System.Windows.Forms.DialogResult.No = result Then
          e.Cancel = True
      End If

  End Sub
using Infragistics.Shared;
using Infragistics.Win;
using Infragistics.Win.UltraWinGrid;
using System.Diagnostics;

private void ultraGrid1_BeforeRowsDeleted(object sender, Infragistics.Win.UltraWinGrid.BeforeRowsDeletedEventArgs e)
{

	// グリッドのメッセージ ボックスの表示を回避します
	e.DisplayPromptMsg = false;
	 
	// カスタム メッセージ ボックスを表示します
	System.Windows.Forms.DialogResult result =
		System.Windows.Forms.MessageBox.Show( 
		"Deleting " + e.Rows.Length.ToString( ) + " row(s). Continue ?",
		"Delete rows?", 
		System.Windows.Forms.MessageBoxButtons.YesNo, 
		System.Windows.Forms.MessageBoxIcon.Question );
	 
	// メッセージ ボックスで [いいえ] がクリックされた場合、行の削除をキャンセルします
	if ( System.Windows.Forms.DialogResult.No == result )
		e.Cancel = true;

}
参照