Пример #1
0
        public static bool PasteSelection(this Selection sel, string destination)
        {
            sel.Copy();

            sel = SelectionExt.SelectPart(destination);

            sel.Paste2();

            sel.Clear();

            return(true);
        }
Пример #2
0
        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);
        }