'宣言 Public ReadOnly Property Column As UltraGridColumn
public UltraGridColumn Column {get;}
オブジェクトの Column プロパティは、UltraGridColumn オブジェクトによって定義されたグリッドの特定の列を参照します。Column プロパティを使用すると、指定した UltraGridColumn オブジェクトのプロパティにアクセスしたり、Header オブジェクトへの参照を取得したりできます。
UltraGridColumn オブジェクトは、グリッドの単一の列を表します。UltraGridColumn オブジェクトは、列のすべてのセルにデータを提供する元の単一のデータフィールドに密接にリンクされています (元のデータフィールドがない非バインドの列を除く)。UltraGridColumn オブジェクトは、個々のセルに使用するインターフェイスのタイプ (編集、ドロップダウン リスト、カレンダなど) を決定し、データマスクなど列を構成するセルの書式および動作関連の設定を制御します。
Imports Infragistics.Shared Imports Infragistics.Win Imports Infragistics.Win.UltraWinGrid Imports System.Diagnostics Private Sub Button32_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button32.Click ' Check if there is an active cell. If Not Me.ultraGrid1.ActiveCell Is Nothing Then ' Print out the the column key and the row index of the active cell. Debug.WriteLine("ActiveCell's column = " & Me.ultraGrid1.ActiveCell.Column.Key & ", Row Index = " & Me.ultraGrid1.ActiveCell.Row.Index.ToString()) Else Debug.WriteLine("There is no active cell.") End If End Sub
using Infragistics.Shared; using Infragistics.Win; using Infragistics.Win.UltraWinGrid; using System.Diagnostics; private void button32_Click(object sender, System.EventArgs e) { // Check if there is an active cell. if ( this.ultraGrid1.ActiveCell != null ) { // Print out the the column key and the row index of the active cell. Debug.WriteLine( "ActiveCell's column = " + this.ultraGrid1.ActiveCell.Column.Key + ", Row Index = " + this.ultraGrid1.ActiveCell.Row.Index.ToString( ) ); } else { Debug.WriteLine( "There is no active cell." ); } }