Click here to Skip to main content
15,880,469 members
Articles / Programming Languages / C#
Article

wiicwgp (what is in the clipboard is what get pasted) Add-in

Rate me:
Please Sign up or sign in to vote.
4.88/5 (17 votes)
17 May 2003CPOL2 min read 66.3K   980   18   13
An add-in that allows HTML element text to be pasted exactly as it is in the clipboard, disallowing VS.NET to add any extra attributes.

Introduction

Chris Maunder posted in the Lounge about what he considers an annoying feature in VS.NET, that it adds ID attribute to an HTML element when pasted from a clipboard. (Actually, it adds the ID attribute only to some subset of elements like the INPUT element.) Here is what you need to see the feature in action:-

  1. Cut/Copy some HTML text like <input name="test" value="">
  2. Paste it in the HTML source editor. The text that will be pasted will be <input name="test" value="" id=Text1>. The text in the clipboard is still <input name="test" value=""> which can be verified by pasting in any other text editor.

The purpose of this add-in is to not allow the above to happen.

Solution

Fortunately, Visual Studio .NET Extensibility API is quite rich and provides an amazing level of control. The solution turned out to be pretty simple. Visual Studio .NET fires two events before any command get executed AfterExecute and BeforeExecute. The BeforeExecute event allows the handlers to optionally cancel the command execution. So the add-in can handle the BeforeExecute event and write the text as it is and cancel the default command execution. Here is a detailed description of the add-in code.

  1. The first step is to add the BeforeExecute event for the Edit.Paste command. For this we need to find the Guid and ID of the command that Visual Studio .NET maintains for the command. This can be obtained from the command object corresponding the the Edit.Paste command. The following code gets the Command object.

    C#
    Command cmd;
    cmd = applicationObject.Commands.Item("Edit.Paste", 0);
  2. Next we need to handle the BeforeExecute event of this command.

    C#
    CommandEvents events;
    events = applicationObject.Events.get_CommandEvents(cmd.Guid, cmd.ID);
    events.BeforeExecute += new 
        _dispCommandEvents_BeforeExecuteEventHandler(this.OnBeforePaste);
  3. Now before any text is pasted, the control goes to the OnBeforePaste method which looks like:

    C#
    void OnBeforePaste(string guid, int id, 
       object customIn, object customOut, ref bool cancel)

    If the cancel parameter value is set to true in the function, the command execution will be canceled.

  4. When OnBeforePaste function is called, we need to check whether the user is using the HTML editor. Here is how this is done.
    C#
    HTMLWindow htmlWindow = 
         applicationObject.ActiveWindow.Object as HTMLWindow;
    
    if (htmlWindow != null)
    {
        //This means that user is in the HTML editor
  5. Finally we need to add text on our own to the document and cancel the default paste operations.
    C#
    if (htmlWindow.CurrentTab == vsHTMLTabs.vsHTMLTabsSource)
    {
        IDataObject dataObject = Clipboard.GetDataObject();
        string text = (string)dataObject.GetData(DataFormats.Text);
        TextWindow tw = (TextWindow)htmlWindow.CurrentTabObject;
        tw.Selection.Insert(text, 
            (int)vsInsertFlags.vsInsertFlagsInsertAtStart);
    }
    else
    {
        mshtml.IHTMLDocument2 doc = 
           (mshtml.IHTMLDocument2)htmlWindow.CurrentTabObject;
        doc.execCommand("Paste", false, null);
    }
  6. Finally the event handlers need to be removed in the OnDisconnection event of the add-in.
    C#
    events.BeforeExecute -= new 
      _dispCommandEvents_BeforeExecuteEventHandler(this.OnBeforePaste);

Using the add-in

Follow these simple steps to start using the add-in:-

  1. Download the add-in setup and install it.
  2. Enable the add-in using the add-in manager (by default it is not loaded). Any HTML cut-paste operations will not add the default ID attribute.
  3. Unloading the add-in will make cut-paste operations work in the default way.

Updates

  • May 19, 2003 - Added support for VS.NET 2003 and also support for editing from HTML design view

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralOverwrite problems Pin
fiendiest20-Jun-05 13:18
fiendiest20-Jun-05 13:18 
GeneralRe: Overwrite problems Pin
rds3wave1-Sep-09 5:56
rds3wave1-Sep-09 5:56 
Questionany chance of a new version? Pin
orangenick11-Oct-04 22:59
orangenick11-Oct-04 22:59 
GeneralStill not working in VS.Net 2003 Pin
g_byte2-Sep-04 6:11
g_byte2-Sep-04 6:11 
GeneralIT DOES NOT WORK!!!!!!!!! Pin
coolman545317-Aug-04 9:56
coolman545317-Aug-04 9:56 
GeneralPrevious Changes + Atomic Undo Pin
lenwilcox17-Mar-04 7:33
lenwilcox17-Mar-04 7:33 
GeneralAnother new feature! Pin
ultplyr28-May-03 11:18
ultplyr28-May-03 11:18 
Generalfeature request Pin
anotheruser22-May-03 5:10
anotheruser22-May-03 5:10 
GeneralRe: feature request Pin
Rama Krishna Vavilala22-May-03 7:18
Rama Krishna Vavilala22-May-03 7:18 
GeneralIf this works... Pin
Paul Watson18-May-03 21:30
sitebuilderPaul Watson18-May-03 21:30 
GeneralRe: If this works... Pin
Paul Watson18-May-03 21:51
sitebuilderPaul Watson18-May-03 21:51 
GeneralRe: If this works... Pin
Rama Krishna Vavilala19-May-03 2:11
Rama Krishna Vavilala19-May-03 2:11 
GeneralRe: If this works... Pin
Rama Krishna Vavilala19-May-03 4:06
Rama Krishna Vavilala19-May-03 4:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.