Esempio n. 1
0
 /// ------------------------------------------------------------------------------------
 /// <summary>
 /// Determine if pasting of text from the clipboard is possible.
 /// </summary>
 /// <returns>
 /// Returns <c>true</c> if pasting is possible.
 /// </returns>
 /// <remarks>Formerly <c>AfVwRootSite::CanPaste()</c>.</remarks>
 /// ------------------------------------------------------------------------------------
 public override bool CanPaste()
 {
     if (m_decoratedEditingHelper != null)
     {
         return(m_decoratedEditingHelper.CanPaste());
     }
     return(base.CanPaste());
 }