In This Article

RibbonQuickAccessToolBarItemAddingEventArgs Class

Provides event data for quick-access toolbar item adding events.

public class RibbonQuickAccessToolBarItemAddingEventArgs : CancelRoutedEventArgs
Inheritance:
object EventArgs RoutedEventArgs CancelRoutedEventArgs object

Constructors

RibbonQuickAccessToolBarItemAddingEventArgs(string, object)

Initializes a new instance of the RibbonQuickAccessToolBarItemAddingEventArgs class.

public RibbonQuickAccessToolBarItemAddingEventArgs(string key, object item)
Parameter Type Description
key string

A string that uniquely identifies the item.

item object

The item being added.

Properties

Item

Gets or sets the item being added.

public object Item { get; set; }

Property Value

object:

The item being added.

Key

Gets a string that uniquely identifies the item.

public string Key { get; }

Property Value

string:

A string that uniquely identifies the item.

Inherited Members