現在のセルの値
noby.Message(gcMultiRow1.CurrentCell.Value.ToString());
セルの値は GcMultiRow.SetValue メソッドで設定します。次のコードは、1行目の2番目のセルに値を設定します。
gcMultiRow1.SetValue(0, 1, "ABC");
object cellValue = gcMultiRow1.GetValue(0, 1); Console.WriteLine(cellValue);
s = gcMultiRow1.GetValue(x, "auctionTitleCell").ToString();
セルの値を取得するには、GcMultiRow.GetValue メソッドを使用します。次のコードは、1行目の2番目のセルの値を取得し、コンソールに出力します。
gcMultiRow1.Rows[0].Cells[1].Value = "DEF"; gcMultiRow1[0, 2].Value = "GHI"; Console.WriteLine(gcMultiRow1[0, 2].Value);
これでも良いはず。
target.CurrentRow.Cells["checkBoxCell1"].Value = true;
target.CurrentRow.Visible = false;