public static bool PasteSelection(this Selection sel, string destination) { sel.Copy(); sel = SelectionExt.SelectPart(destination); sel.Paste2(); sel.Clear(); return(true); }
public static bool CopyPasteBreakLink(string part, string destination) { var sel = SelectionExt.SelectParts(part); sel.Copy(); sel = SelectionExt.SelectPart(destination); sel.PasteBreakLink(); sel.Clear(); return(true); }