Hello.
There is a script. The user copies text data in a specific format and wants to insert them into an Excel 2010 spreadsheet.
It is required in the Add-In to intercept this data, parse and paste it into the cells with the desired design.
Is it possible to do this in C # using VSTO?
I try through the command element in RibbonUI , but I can’t find the idMso I need:
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui" loadImage="GetImage" onLoad="OnLoadRibonUI" > <commands> <command idMso="PasteTextOnly" onAction="OnAction" /> </commands> </customUI>