The RibbonViewTab class represents a Windows Forms ribbon tab for customizing the view settings. To enable these settings the TextControl must be connected with the Ribbon that hosts the RibbonViewTab.

Syntax

public class RibbonViewTab : Windows.Forms.Ribbon.RibbonTab
Public Class RibbonViewTab
  Inherits Windows.Forms.Ribbon.RibbonTab

Introduced: X14.

Examples

The following example shows a 'RibbonViewTab' class with its 'KeyTip' property.

TXTextControl.Windows.Forms.Ribbon.RibbonViewTab ribbonTab = new TXTextControl.Windows.Forms.Ribbon.RibbonViewTab(); 
     ribbonTab.KeyTip = "V";
Dim ribbonTab As TXTextControl.Windows.Forms.Ribbon.RibbonViewTab = New TXTextControl.Windows.Forms.Ribbon.RibbonViewTab()
    ribbonTab.KeyTip = "V"

Constructors

Constructor Description
RibbonViewTab Initializes a new instance of the RibbonViewTab class.

Enumerations

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

Methods

Method Description
FindItem Finds a control that has the provided RibbonViewTab.RibbonItem identifier.

Properties

Property Description
KeyTip Gets or sets the keyboard shortcut of the RibbonTab.
(Inherited from RibbonTab)
RibbonGroups Gets a collection of all RibbonGroups in a RibbonTab.
(Inherited from RibbonTab)