バージョン

IsQatCommonTool プロパティ (TextEditorTool)

QuickAccessToolbar のクイック カスタマイズ メニューに表示される「一般的なツール」のリストにツールが表示される場合は True を返します。
シンタックス
'宣言
 
Public Property IsQatCommonTool As Boolean
public bool IsQatCommonTool {get; set;}
使用例
' Create TextEditorTool 
Dim textEditorTool As New TextEditorTool() 
textEditorTool.Id = "textEditor" 
textEditorTool.Caption = "textEditor" 
textEditorTool.KeyTip = "TE" 

' Add to QAT 
xamRibbon.QuickAccessToolbar.Items.Add(New QatPlaceholderTool("textEditor", QatPlaceholderToolType.Tool)) 

Debug.Write("textEditorTool.IsQatCommonTool" + textEditorTool.IsQatCommonTool)
// Create TextEditorTool
TextEditorTool textEditorTool = new TextEditorTool();
textEditorTool.Id = "textEditor";
textEditorTool.Caption = "textEditor";
textEditorTool.KeyTip = "TE";

// Add to QAT
xamRibbon.QuickAccessToolbar.Items.Add(new QatPlaceholderTool("textEditor", QatPlaceholderToolType.Tool));

Debug.Write("textEditorTool.IsQatCommonTool" + textEditorTool.IsQatCommonTool);
参照