MapInfo Pro Developers User Group

Welcome to the MapInfo Pro Developers community!  We are a group dedicated to the discussion and understanding of MapBasic and .Net MapInfoPro AddIn development. Bring your questions and ideas here. This group includes several members of the Pro development team from around the world.

Please feel free to start a discussion in the discussion tab or join in a conversation.

Product Information  Ideas Portal  MapInfo Community Downloads

Discussions

Members

Resources

Events

 View Only
  • 1.  What is the name of, and how do I remove, the little arrow thing in the bottom-fight corner of a group in a ribbon, that I have made?

    Posted 11-07-2017 00:22

    I am writing code to make a custom tab in the ribbon interface.

    In each group, there is a little arrow thing in the bottom-right corner.

    How do I get rid of it?

    What is it even called?

    Is it a "Dialog box launcher?"



  • 2.  RE: What is the name of, and how do I remove, the little arrow thing in the bottom-fight corner of a group in a ribbon, that I have made?

    Posted 11-06-2017 20:37

    Hi Nick,

    I think it's called a "Launcher Button".  You can turn it off using:

    Call SetRbnCtrlGrpIsLauncherVisible(thisRibbonGroupRef, False)

    James.

    ?



  • 3.  RE: What is the name of, and how do I remove, the little arrow thing in the bottom-fight corner of a group in a ribbon, that I have made?

    Posted 11-06-2017 20:40

    Thanks James!

    That worked perfectly



  • 4.  RE: What is the name of, and how do I remove, the little arrow thing in the bottom-fight corner of a group in a ribbon, that I have made?

    Employee
    Posted 11-07-2017 03:38

    If you are using the latest version of the RIBBONLib, Nick, the "Dialog Box Launcher" (which I think is the official Microsoft term of it) is hidden by default.



  • 5.  RE: What is the name of, and how do I remove, the little arrow thing in the bottom-fight corner of a group in a ribbon, that I have made?

    Employee
    Posted 11-07-2017 12:52

    ?If using the .net api there is a method on the IRibbonControlGroup

    interface :

     

    /// <summary>

    /// Gets or sets the visibility of launcher button.

    /// </summary>

    bool IsLauncherVisible { get; set; }