using Infragistics.Shared; using Infragistics.Win; using Infragistics.Win.UltraWinGrid; using System.Diagnostics; foreach (UltraGridRow linha in ultraGrid1.Rows) { if (linha.Selected) { //MessageBox.Show(linha.Cells["Id"].Text.ToString()); strListOfID = strListOfID + linha.Cells["Id"].Text.ToString() + @","; } }