This video demonstrates how to create, using C#, and use a application that easily removes the formatting from text copied to the clipboard.Here is the code snippet referenced in the example:IDataObject data = Clipboard.GetDataObject();if (data != null && data.GetDataPresent(DataFormats.Text)) { String clipboardText = data.GetData(DataFormats.Text).ToString(); Clipboard.SetText(clipboardText);}