/// ------------------------------------------------------------------------------------ /// <summary> /// Determine if the cutting of text into the clipboard is possible. /// </summary> /// <returns> /// Returns <c>true</c> if cutting is possible. /// </returns> /// <remarks>Formerly <c>AfVwRootSite::CanCut()</c>.</remarks> /// ------------------------------------------------------------------------------------ public override bool CanCut() { if (m_decoratedEditingHelper != null) { return(m_decoratedEditingHelper.CanCut()); } return(base.CanCut()); }