आप माइक्रोसॉफ्ट वेबसाइट http://www.microsoft.com/en-us/download/details.aspx?id=6627 पर सभी कार्यालय आईडी के आप चाहते हैं मिलेगा चाहते हैं।
आपको अपनी आईडी PowerPointControls.xlsx
फ़ाइल में मिल जाएगी।
के लिए आप अपने मेनू बनाने के लिए:
अपने Ribbon.xml खोलें
और बाद <ribbon>
<tabs>
<tab idMso="TabAddIns">
<group id="ContentGroup" label="Content">
<button id="textButton" label="Insert Text"
screentip="Text" onAction="OnTextButton"
supertip="Inserts text at the cursor location."/>
<button id="tableButton" label="Insert Table"
screentip="Table" onAction="OnTableButton"
supertip="Inserts a table at the cursor location."/>
</group>
</tab>
</tabs>
एक कस्टम ऐड शॉर्टकट के लिए, मुझे लगता है कि आप कोई नया टैब जोड़ने के लिए निम्नलिखित जोड़ें :
<tab id="YourTab" visible="true" label="Name">
<group id="YourGroup" label="name">
<button onAction="CallAddinsHere();" label="Call add-ins"/>
</group>
</tab>
यदि आप कस्टम के साथ बातचीत करना चाहते हैं
Automate Office Ribbon through MSAA (CSOfficeRibbonAccessibility)
यह http://stackoverflow.com/questions/28673502/add-standard-command-button-new-slide-to-custom-ribbon- से संबंधित है: ऐड शॉर्टकट, पर एक नजर है इन-ऑफिस-एड-इन –