バージョン

IsQatCommonTool プロパティ (ComboEditorTool)

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

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

Debug.Write("comboEditorTool.IsQatCommonTool" + comboEditorTool.IsQatCommonTool)
// Create ComboEditorTool
ComboEditorTool comboEditorTool = new ComboEditorTool();
comboEditorTool.Id = "comboEditor";
comboEditorTool.Caption = "comboEditor";

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

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