Class
HistoryChangedEventArgs

Initializes a new instance of the SelectionChangeEventArgs class.

Definition

Namespace:Telerik.Windows.Controls.ColorEditor

Assembly:Telerik.Windows.Controls.Input.dll

Syntax:

cs-api-definition
public class HistoryChangedEventArgs : RadRoutedEventArgs

Inheritance: objectRadRoutedEventArgsHistoryChangedEventArgs

Constructors

HistoryChangedEventArgs(IList<Color>, IList<Color>, RoutedEvent, object)

Initializes a new instance of the HistoryChangedEventArgs class.

Declaration

cs-api-definition
public HistoryChangedEventArgs(IList<Color> removedItems, IList<Color> addedItems, RoutedEvent routedEvent, object source)

Parameters

removedItems

IList<Color>

The removed items.

addedItems

IList<Color>

The added items.

routedEvent

RoutedEvent

The routed event.

source

object

The source.

Properties

AddedItems

Gets a list that contains the colors that were added to RadColorEditor's history.

Declaration

cs-api-definition
public ReadOnlyCollection<Color> AddedItems { get; }

Property Value

ReadOnlyCollection<Color>

RemovedItems

Gets a list that contains the colors that were removed from RadColorEditor's history.

Declaration

cs-api-definition
public ReadOnlyCollection<Color> RemovedItems { get; }

Property Value

ReadOnlyCollection<Color>