BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
GridCurrentCell cc = this.gridDataBoundGrid1.CurrentCell;
cc.MoveTo(this.gridDataBoundGrid1.Model.RowCount, 1, GridSetCurrentCellOptions.SetFocus);
cc.BeginEdit();
cc.Renderer.ControlText = "someText";
GridCurrentCell cc = grid.CurrentCell;
cc.MoveTo(e.RowIndex, e.ColIndex, GridSetCurrentCellOptions.SetFocus);
cc.BeginEdit();
GridComboBoxCellRenderer r = cc.Renderer as GridComboBoxCellRenderer;
r.EditPart.Text = "XYZ";