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