バージョン

IsQatCommonTool プロパティ (MaskedEditorTool)

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

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

Debug.Write("maskedEditorTool.IsQatCommonTool" + maskedEditorTool.IsQatCommonTool)
// Create MaskedEditorTool
MaskedEditorTool maskedEditorTool = new MaskedEditorTool();
maskedEditorTool.Id = "maskedEditor";
maskedEditorTool.Caption = "maskedEditor";
maskedEditorTool.KeyTip = "TE";

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

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