IgbDataGrid は非推奨のコントロールです。代わりに IgbGrid をご利用ください。IgbGrid での実装方法についてご不明な点がありましたら弊社技術サポートまでお問い合わせください。
IgbDataGridのセルをコードで選択する場合は、セル選択機能を有効化したうえで、IgbDataGridのSelectedCellsに選択したいセルを示すIgbCellKeyオブジェクトを追加してください。
DataGridRef.SelectedCells.Add(new IgbCellKey() { ColumnUniqueKey = "Name", PrimaryKey = new IgbPrimaryKeyValue(new String[] { "ID" }, new object[] { "02" }) });
実行結果
![](https://kb.jp.infragistics.com/wp-content/uploads/2022/08/KB8941_SampleApp1.gif)
サンプル