Example #1
0
        /// <summary>
        /// 粘贴
        /// </summary>
        private void Paste()
        {
            Cell cell = ActiveSheet.ActiveCell;

            //JZCellProperty p = cell.Tag as JZCellProperty;
            if (cell.Locked == true)
            {
                return;
            }
            ActiveSheet.ClipboardPaste(ClipboardPasteOptions.AsString);
        }
Example #2
0
 public void Redo()
 {
     ActiveSheet.ClipboardPaste();
 }
Example #3
0
 public void PasteData()
 {
     ActiveSheet.ClipboardPaste();
 }