'宣言 Public Event BeforeRowActivate As RowEventHandler
public event RowEventHandler BeforeRowActivate
イベント ハンドラが、このイベントに関連するデータを含む、RowEventArgs 型の引数を受け取りました。次の RowEventArgs プロパティには、このイベントの固有の情報が記載されます。
プロパティ | 解説 |
---|---|
Row | 行 (通常はセルが属する行) を返します。 |
row 引数は、アクティブになる行のプロパティの設定やそのメソッドの呼び出しに使用できる、UltraGridRowオブジェクトへの参照を返します。この参照を使用して、返された行のプロパティを設定したり、メソッドを呼び出したりすることができます。
このイベントは、行がアクティブになる前、つまり行がフォーカスを取得する前に生成されます。
BeforeRowDeactivate イベントは、行が非アクティブになる前、つまり行がフォーカスを失う前に生成されます。
このイベントの後に AfterRowActivate イベント (行がアクティブになった後に発生するイベント) が発生します。
Imports Infragistics.Shared Imports Infragistics.Win Imports Infragistics.Win.UltraWinGrid Private Sub UltraGrid1_BeforeRowDeactivate(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles ultraGrid1.BeforeRowDeactivate Dim row As UltraGridRow = Me.ultraGrid1.ActiveRow ' Reset the FontData to default row.Appearance.FontData.Reset() End Sub Private Sub UltraGrid1_BeforeRowActivate(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinGrid.RowEventArgs) Handles ultraGrid1.BeforeRowActivate ' Set the font of the row about to be activated to bold e.Row.Appearance.FontData.Bold = Infragistics.Win.DefaultableBoolean.True End Sub
using Infragistics.Shared; using Infragistics.Win; using Infragistics.Win.UltraWinGrid; using System.Diagnostics; private void ultraGrid1_BeforeRowDeactivate(object sender, System.ComponentModel.CancelEventArgs e) { UltraGridRow row = this.ultraGrid1.ActiveRow; // Reset the FontData to default row.Appearance.FontData.Reset( ); } private void ultraGrid1_BeforeRowActivate(object sender, Infragistics.Win.UltraWinGrid.RowEventArgs e) { // Set the font of the row about to be activated to bold e.Row.Appearance.FontData.Bold = Infragistics.Win.DefaultableBoolean.True; }