バージョン

KeyTip プロパティ (RibbonTab)

キーチップを使用するときに表示されるニーモニックを表す最大 3 文字の文字列を返すまたは設定します。
シンタックス
'宣言
 
Public Property KeyTip As String
public string KeyTip {get; set;}
例外
例外解説
System.ArgumentException 割り当てられた値には 4 文字以上の文字があります。
解説

リボンが表示されており、Alt キーが押されると KeyTip が表示されます。

リボン タブのキーチップが同じコンテナー内の別のツールと競合する場合、このキーチップが変更されます。

デフォルトで、キーチップがリボン タブに対して設定されない場合、一意のキーチップがリボン タブに対して自動生成されます。キーチップを自動生成しない場合には、UltraToolbarsManager.AutoGenerateKeyTipsUltraToolbarsManager.Office2007UICompatibility は False でなければなりません。

使用例
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinToolBars

' Add a RibbonTab
Dim ribbonTab As RibbonTab = Me.UltraToolbarsManager1.Ribbon.Tabs.Add("Ribbon Tab Key")

' Set the caption
ribbonTab.Caption = "Ribbon Tab Caption"

' Add a Contextual Tab Group if it doesn't already exist.
If (Me.UltraToolbarsManager1.Ribbon.ContextualTabGroups.Exists("contextualTabGroup1") = False) Then
	Me.UltraToolbarsManager1.Ribbon.ContextualTabGroups.Add("contextualTabGroup1")
End If

' Put the new RibbonGroup into the Contextual Tab Group
ribbonTab.ContextualTabGroupKey = "contextualTabGroup1"

' Set the KeyTip
ribbonTab.KeyTip = "R"

' Make the new RibbonTab visible.
ribbonTab.Visible = True

' Add some groups. 
ribbonTab.Groups.Add("Clipboard")
ribbonTab.Groups.Add("Font")
ribbonTab.Groups.Add("Styles")
using Infragistics.Win;
using Infragistics.Win.UltraWinToolBars;


// Add a RibbonTab
RibbonTab ribbonTab = this.ultraToolbarsManager1.Ribbon.Tabs.Add("Ribbon Tab Key");            

// Set the caption
ribbonTab.Caption = "Ribbon Tab Caption";

// Add a Contextual Tab Group if it doesn't already exist.
if (this.ultraToolbarsManager1.Ribbon.ContextualTabGroups.Exists("contextualTabGroup1") == false)
	this.ultraToolbarsManager1.Ribbon.ContextualTabGroups.Add("contextualTabGroup1");

// Put the new RibbonGroup into the Contextual Tab Group
	ribbonTab.ContextualTabGroupKey = "contextualTabGroup1";

// Set the KeyTip
ribbonTab.KeyTip = "R";

// Make the new RibbonTab visible.
ribbonTab.Visible = true;

// Add some groups. 
ribbonTab.Groups.Add("Clipboard");
ribbonTab.Groups.Add("Font");
ribbonTab.Groups.Add("Styles");
参照