'宣言 Public Class CellEventArgs Inherits System.EventArgs
public class CellEventArgs : System.EventArgs
Imports Infragistics.Shared Imports Infragistics.Win Imports Infragistics.Win.UltraWinGrid Imports System.Diagnostics Private Sub UltraGrid1_CellChange(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinGrid.CellEventArgs) Handles ultraGrid1.CellChange ' ユーザーがセルの値を変更したときに CellChange イベントが発生します ' このイベントはテキスト ボックスの TextChanged イベントに似ています Debug.WriteLine("New value = " & e.Cell.Text) End Sub
using Infragistics.Shared; using Infragistics.Win; using Infragistics.Win.UltraWinGrid; using System.Diagnostics; private void ultraGrid1_CellChange(object sender, Infragistics.Win.UltraWinGrid.CellEventArgs e) { // ユーザーがセルの値を変更したときに CellChange イベントが発生します // このイベントはテキスト ボックスの TextChanged イベントに似ています Debug.WriteLine( "New value = " + e.Cell.Text ); }