' 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);