Index: src/Common/DelftTools.Controls/ITableViewPasteController.cs =================================================================== diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -r5fc71a385897af92ccb092f2f969b5709afab85a --- src/Common/DelftTools.Controls/ITableViewPasteController.cs (.../ITableViewPasteController.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9) +++ src/Common/DelftTools.Controls/ITableViewPasteController.cs (.../ITableViewPasteController.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) @@ -6,22 +6,6 @@ public interface ITableViewPasteController { /// - /// Paste value string into tableview at current selection - /// - /// - void PasteLines(string[] lines); - - /// - /// Whether or not the controller is pasting. - /// - bool IsPasting { get; } - - /// - /// This method does most of the work. It Pastes Clipboard content to the table view. - /// - void PasteClipboardContents(); - - /// /// Occurs when a paste failed due to sorting or filtering. /// event EventHandler> PasteFailed; @@ -31,9 +15,25 @@ /// event EventHandler PasteFinished; + /// + /// Whether or not the controller is pasting. + /// + bool IsPasting { get; } + /// /// Gets or sets the paste behaviour value /// TableViewPasteBehaviourOptions PasteBehaviour { get; set; } + + /// + /// Paste value string into tableview at current selection + /// + /// + void PasteLines(string[] lines); + + /// + /// This method does most of the work. It Pastes Clipboard content to the table view. + /// + void PasteClipboardContents(); } } \ No newline at end of file