Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
65
PopupRibbonGroup
posted

PopupRibbonGroup 

I want to create a "PopupRibbonGroup" that looks and acts like the "Chart Title" in the picture below. 

 

I read in the help document about

Public ReadOnly Property UnderlyingGroup As RibbonGroup

"Returns the underlying RibbonGroup that this group is associated with. This is primarily used for a RibbonGroup that is owned by a PopupRibbonGroup in order to point back to the RibbonGroup sited on the RibbonTab."

 How do I create this PopupRibbonGroup? I can't find anything about it in the documentation.

 /Göran

 

 

 

 

Parents
No Data
Reply
  • 44743
    posted

    The PopupRibbonGroupTool is not the right tool to use for this. That tool is only used when a ribbon group is added to the quick access toolbar. It is a drop down tool which shows the contents of the associated ribbon group. You would instead want to use a PopupMenuTool. Add an instance of one to the RibbonGroup. Add two ButtonTools to the new PopupMenuTool. Set the ButtonTools' SharedProps.Caption to "None" and "Above Chart", respectively. Then set their SharedProps.DescriptionOnMenu to the text you want to appear under the title for each tool.

Children