简体   繁体   中英

C# Excel Addin Ribbon enabled on cell text right click

I am developing a Microsoft Excel Addin.

I need to add a button on context menu (right click) on cell selected text. I have found the ContextMenuCell idMso but this works only on whole cell right click.

Here is my ribbon's xml:

<?xml version="1.0" encoding="UTF-8"?>
<customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui" onLoad="Ribbon_Load">
<ribbon>
</ribbon>
<contextMenus>
<contextMenu idMso="ContextMenuCell">
  <button id="TranslateTextButton" label="Test Label" onAction="OnRibbonClick" getImage="GetIcon"/>
</contextMenu>
</contextMenus>
</customUI>

I wonder if exists something like ContextMenuCell for cell's text and not whole cell. Thank you in advance!

经过多次搜索,我发现ContextMenuFormulaBar可以右键单击公式栏以及内部单元格(文本等)。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM