バージョン 24.2 (最新)

Activate メソッド (UltraGridRow)

行をアクティベートします。操作がキャンセルされた場合 True を返します。
シンタックス
public bool Activate()

戻り値の型

成功する場合は False を返し、それ以外は True。
使用例
Imports Infragistics.Shared
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinGrid

  Private Sub Button61_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button61.Click

      Dim row As UltraGridRow = Me.ultraGrid1.Rows(1)

      ' You can make a row the active row by setting the ActiveRow property off the
      ' UltraGrid
      Me.ultraGrid1.ActiveRow = row

      ' Or by calling Activate method off the UltraGridRow
      row.Activate()

      ' Or by setting the Activated property off the UltraGridRow to true.
      row.Activated = True

  End Sub
'宣言
 
Public Function Activate() As Boolean
 
using Infragistics.Shared;
using Infragistics.Win;
using Infragistics.Win.UltraWinGrid;
using System.Diagnostics;

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

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

	// You can make a row the active row by setting the ActiveRow property off the
	// UltraGrid
	this.ultraGrid1.ActiveRow = row;

	// Or by calling Activate method off the UltraGridRow
	row.Activate( );

	// Or by setting the Activated property off the UltraGridRow to true.
	row.Activated = true;

}
'宣言
 
Public Function Activate() As Boolean
 
参照