The WPF.RibbonInsertTab class represents a ribbon tab for inserting pages, images, hyperlinks, bookmarks, headers and footers, textframes and symbols. It is inherited from the System.Windows.Controls.Ribbon.RibbonTab class and must be hosted in a System.Windows.Controls.Ribbon.Ribbon object. It can be connected with a WPF.TextControl through the WPF.TextControl.RibbonInsertTab property. Each item has a name, available through its Name property, which corresponds with a member of the WPF.RibbonInsertTab.RibbonItem enumeration. The FrameworkElement.FindName method can be used to get a certain item and manipulate, move or delete it.

Syntax

public class RibbonInsertTab : System.Windows.Controls.Ribbon.RibbonTab
Public Class RibbonInsertTab
  Inherits System.Windows.Controls.Ribbon.RibbonTab

Introduced: X12.

Examples

The WPF.RibbonInsertTab can be configured in the same way as the WPF.RibbonFormattingTab.

TXTextControl.WPF.RibbonInsertingTab ribbonInsertingTab1 = new TXTextControl.WPF.RibbonInsertingTab();
Dim ribbonInsertingTab1 As New TXTextControl.WPF.RibbonInsertingTab()

Enumerations

Enumeration Description
RibbonDropDownItem Each RibbonDropDownItem represents a drop-down item in the RibbonInsertTab.
RibbonItem Each RibbonItem represents an item in the RibbonInsertTab that is not a drop-down item.