Class QATItemEventArgs
Class represents Quick Access ToolBar item event arguments.
Inheritance
System.Object
QATItemEventArgs
Namespace: Syncfusion.Windows.Tools.Controls
Assembly: Syncfusion.Tools.Wpf.dll
Syntax
public class QATItemEventArgs : EventArgs
Constructors
QATItemEventArgs(UIElement, Object, Object, Boolean)
Initializes a new instance of the QATItemEventArgs class.
Declaration
public QATItemEventArgs(UIElement item, object _original, object _cloned, bool _isProgrammatic)
Parameters
Type | Name | Description |
---|---|---|
System.Windows.UIElement | item | The item. |
System.Object | _original | |
System.Object | _cloned | |
System.Boolean | _isProgrammatic |
Properties
ClonedItem
Gets or sets the Cloned item
Declaration
public object ClonedItem { get; set; }
Property Value
Type |
---|
System.Object |
IsProgrammatic
Gets or sets whether QAT item is set through programmatic or not.
Declaration
public bool IsProgrammatic { get; set; }
Property Value
Type |
---|
System.Boolean |
ItemIndex
Gets or sets the item index.
Declaration
public object ItemIndex { get; set; }
Property Value
Type |
---|
System.Object |
OriginalItem
Gets or sets the Original item
Declaration
public object OriginalItem { get; set; }
Property Value
Type |
---|
System.Object |
SourceElement
Represent the source element of QAT item.
Declaration
public UIElement SourceElement { get; set; }
Property Value
Type |
---|
System.Windows.UIElement |