バージョン

Activated プロパティ (UltraGridRow)

このセルがアクティブ行かどうかを示します。
シンタックス
'宣言
 
Public Overrides Property Activated As Boolean
public override bool Activated {get; set;}
解説

Activated プロパティは、この行がアクティブ行である場合 True を返します。UltraGrid の UltraGridBase.ActiveRow プロパティを使用してアクティブ行を取得または設定します。

使用例
Imports Infragistics.Shared
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinGrid
Imports System.Diagnostics

   Private Sub Button53_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button53.Click

       Dim row As UltraGridRow = Me.UltraGrid1.Rows(0)

       ' IsActiveRow and Activated properties off the UltraGridRow test if the row is the same as
       ' the UltraGrid.ActiveRow property. So all three of following should give you the same
       ' result.
       Debug.WriteLine("Before:")
       Debug.WriteLine("row.IsActiveRow = " & row.IsActiveRow)
       Debug.WriteLine("row.Activated =   " & row.Activated)
       Debug.WriteLine("row == UltraGrid.ActiveRow = " & (row Is Me.ultraGrid1.ActiveRow))

       ' Toggle the activation.
       row.Activated = Not row.Activated

       Debug.WriteLine("After:")
       Debug.WriteLine("row.IsActiveRow = " & row.IsActiveRow)
       Debug.WriteLine("row.Activated =   " & row.Activated)
       Debug.WriteLine("row == UltraGrid.ActiveRow = " & (row Is Me.ultraGrid1.ActiveRow))

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

private void button53_Click(object sender, System.EventArgs e)
{

	UltraGridRow row = this.ultraGrid1.Rows[0];

	// IsActiveRow and Activated properties off the UltraGridRow test if the row is the same as
	// the UltraGrid.ActiveRow property. So all three of following should give you the same
	// result.
	Debug.WriteLine("Before:");
	Debug.WriteLine( "row.IsActiveRow = " + row.IsActiveRow );
	Debug.WriteLine( "row.Activated =   " + row.Activated );
	Debug.WriteLine( "row == UltraGrid.ActiveRow = " + ( row == this.ultraGrid1.ActiveRow ) );

	// Toggle the activation.
	row.Activated = !row.Activated;

	Debug.WriteLine("After:");
	Debug.WriteLine( "row.IsActiveRow = " + row.IsActiveRow );
	Debug.WriteLine( "row.Activated =   " + row.Activated );
	Debug.WriteLine( "row == UltraGrid.ActiveRow = " + ( row == this.ultraGrid1.ActiveRow ) );

}
参照