Show TOC

List<FPMXLClient.RibbonUtilies.Tab>GetAdditionalTabComponent();Locate this document in the navigation structure

Adds a new tab to the ribbon.

If you do not want to add a tab, do the following:
 
public List <Tab> GetAdditionalTabComponent()
{
			return null;
}
Example
 public List < Tab > GetAdditionalTabComponent()
 {
   Tab customTab = Ribbon .CreateNewTab( "TabCustomID" );
   List < Tab > tabs = new List < Tab >();
   tabs.Add(customTab);
   return tabs;
 }