バージョン

KeyTip プロパティ (MaskedEditorTool)

KeyTip 時に項目にナビゲートするために使用する最大 3 文字の文字列。
シンタックス
'宣言
 
Public Property KeyTip As String
public string KeyTip {get; set;}
例外
例外解説
System.ArgumentException割り当てられた値には 4 文字以上の文字があります。
解説

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


注:
項目の KeyTip が同じコンテナー内の別の項目と競合する場合、この KeyTip が変更されます。

使用例
' Create MaskedEditorTool 
Dim maskedEditorTool As New MaskedEditorTool() 
maskedEditorTool.Id = "maskedEditor" 
maskedEditorTool.KeyTip = "ME"
// Create MaskedEditorTool
MaskedEditorTool maskedEditorTool = new MaskedEditorTool();
maskedEditorTool.Id = "maskedEditor";
maskedEditorTool.KeyTip = "ME";
<igRibbon:MaskedEditorTool
  
Id="maskedEditor"
  
KeyTip="ME"
>
</igRibbon:MaskedEditorTool>
参照