using System; using DelftTools.Utils; namespace DelftTools.Controls { public interface ITableViewPasteController { /// /// Occurs when a paste failed due to sorting or filtering. /// event EventHandler> PasteFailed; /// /// Gets or sets the paste behaviour value /// TableViewPasteBehaviourOptions PasteBehaviour { set; } /// /// This method does most of the work. It Pastes Clipboard content to the table view. /// void PasteClipboardContents(); } }