ms office - Can a Microsoft Word Web Add-In share ribbon customizations with a VSTO Add-In? -


i have made word vba , vsto add-ins share ribbon customizations in past using code this:

<customui xmlns="http://schemas.microsoft.com/office/2009/07/customui" onload="ribbon_load" xmlns:nsmvsample="sample namespace">   <ribbon>     <tabs>       <tab idq="nsmvsample:tabaddins" label="sample tab">         <group idq="nsmvsample:mygroup" label="sample group">           <button id="newdocument" label="new document" imagemso="filenew" size="large" onaction="newdocument_click" supertip="opens select template dialog create new document."/>         </group>       </tab>     </tabs>   </ribbon> </customui> 

i'm getting know newer office web add-ins. i'd introduce them solution moving commands 1 @ time vsto office javascript.

can vsto add-in share ribbon customisations newer office web add-ins? can use same idq syntax? if so, how setup namespace?

i'm afraid not. office web add-ins use entirely different mechanism defining commands in ribbon. support more constrained set of requirements , controls (buttons , drop-down buttons).


Comments

Popular posts from this blog

php - Vagrant up error - Uncaught Reflection Exception: Class DOMDocument does not exist -

vue.js - Create hooks for automated testing -

Add new key value to json node in java -