BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
Private Sub mnuEditCopy_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles mnuEditCopy.Click Try grdREPA.CurrentCell.EndEdit() Catch Return End Try SendKeys.Send("^C") End Sub
public void EndEdit() { if (IsLocked || cellRenderer == null) return; if (isEditing) { if (IsDroppedDown) CloseDropDown(PopupCloseType.Done); if (IsModified) { if (!this.ConfirmChanges()) { if (this.Exception != null) throw this.Exception; else throw new Exception(ErrorMessage); } } cellRenderer.RaiseEndEdit(); isEditing = false; cellRenderer.RaiseEditingComplete(); Grid.RaiseCurrentCellEditingComplete(); } }