UltraWinGrid の Selected プロパティは、グリッドで現在選択されている項目のいずれかを操作するときに使用します。このプロパティは、3つのコレクションサブオブジェクトを含むSelectedオブジェクトにアクセスします。これらのコレクションは行、列、およびセル用で、それぞれの型の選択オブジェクトが格納されます。グリッドでUltraGridRow、UltraGridColumn、UltraGridCellのいずれかのオブジェクトを選択すると、そのオブジェクトはSelectedオブジェクトの対応するコレクションに追加されます。オブジェクトの選択を解除すると、そのオブジェクトはコレクションから削除されます。
Selected プロパティを使用することで、特定の型の選択項目を反復処理したり、選択項目のプロパティを確認または変更したりできます。
次のサンプル コードは、選択されているすべての行の CustomerID フィールドと ContactName フィールドをクリップボードにテキストとしてコピーします。このコードは、選択行が含まれるテーブルに各フィールドが存在していて、行が UltraGridGroupByRows でないことを前提とします。
C#:
private void button1_Click(object sender, System.EventArgs e) { Infragistics.Win.UltraWinGrid.SelectedRowsCollection selectedRows; // Get the selected rows. // selectedRows = this.ultraGrid1.Selected.Rows; // If there are no selected rows, return // if ( selectedRows.Count < 1 ) return; System.Text.StringBuilder sb = new System.Text.StringBuilder( ); // Loop through all the selected rows // for ( int i = 0; i < selectedRows.Count; i++ ) { Infragistics.Win.UltraWinGrid.UltraGridRow row; row = selectedRows[i]; // Use Cells collection to get the values for // CustomerID and ContactName columns. // sb.Append( row.Cells[ "CustomerID" ].Text ); sb.Append( "," ); sb.Append( row.Cells["ContactName"].Text ); sb.Append( "\r\n" ); } // Copy the text to the clipboard. // System.Windows.Forms.Clipboard.SetDataObject( sb.ToString( ) ); }