Esempio n. 1
0
 /// ------------------------------------------------------------------------------------
 /// <summary>
 /// Paste data from the clipboard into the view.
 /// </summary>
 /// <param name="pasteOneParagraph">true to only paste the first paragraph
 /// of the selection</param>
 /// <returns></returns>
 /// ------------------------------------------------------------------------------------
 public override void PasteClipboard(bool pasteOneParagraph)
 {
     if (m_decoratedEditingHelper != null)
     {
         m_decoratedEditingHelper.PasteClipboard(pasteOneParagraph);
     }
     else
     {
         base.PasteClipboard(pasteOneParagraph);
     }
 }