/// <summary> /// 粘贴 /// </summary> private void Paste() { Cell cell = ActiveSheet.ActiveCell; //JZCellProperty p = cell.Tag as JZCellProperty; if (cell.Locked == true) { return; } ActiveSheet.ClipboardPaste(ClipboardPasteOptions.AsString); }
public void Redo() { ActiveSheet.ClipboardPaste(); }
public void PasteData() { ActiveSheet.ClipboardPaste(); }