Class HistoryPair
Class that represents pairs of history data.
Inheritance
System.Object
HistoryPair
Namespace: Syncfusion.Windows.Forms.HTMLUI
Assembly: Syncfusion.HTMLUI.Windows.dll
Syntax
public class HistoryPair : Object
Constructors
HistoryPair(String, PathType)
Initializes a new instance of the HistoryPair class
Declaration
public HistoryPair(string key, PathType tag)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | key | String key value |
| PathType | tag | PathType instance |
Properties
Key
Gets or sets the key in the history.
Declaration
public string Key { get; set; }
Property Value
| Type |
|---|
| System.String |
Tag
Gets or sets the type of the item in the history.
Declaration
public PathType Tag { get; set; }
Property Value
| Type |
|---|
| PathType |
Methods
add_KeyChanged(ValueChangedEventHandler)
Declaration
public void add_KeyChanged(ValueChangedEventHandler value)
Parameters
| Type | Name | Description |
|---|---|---|
| ValueChangedEventHandler | value |
add_TagChanged(ValueChangedEventHandler)
Declaration
public void add_TagChanged(ValueChangedEventHandler value)
Parameters
| Type | Name | Description |
|---|---|---|
| ValueChangedEventHandler | value |
OnKeyChanged(ValueChangedEventArgs)
Raises KeyChanged event.
Declaration
protected virtual void OnKeyChanged(ValueChangedEventArgs args)
Parameters
| Type | Name | Description |
|---|---|---|
| ValueChangedEventArgs | args | ValueChangedEventArgs instance |
OnTagChanged(ValueChangedEventArgs)
Raises TagChanged event.
Declaration
protected virtual void OnTagChanged(ValueChangedEventArgs args)
Parameters
| Type | Name | Description |
|---|---|---|
| ValueChangedEventArgs | args | ValueChangedEventArgs instance |
RaiseKeyChanged(ValueChangedEventArgs)
Raises KeyChanged event.
Declaration
protected void RaiseKeyChanged(ValueChangedEventArgs args)
Parameters
| Type | Name | Description |
|---|---|---|
| ValueChangedEventArgs | args | ValueChangedEventArgs instance |
RaiseTagChanged(ValueChangedEventArgs)
Raises TagChanged event.
Declaration
protected void RaiseTagChanged(ValueChangedEventArgs args)
Parameters
| Type | Name | Description |
|---|---|---|
| ValueChangedEventArgs | args | ValueChangedEventArgs instance |
remove_KeyChanged(ValueChangedEventHandler)
Declaration
public void remove_KeyChanged(ValueChangedEventHandler value)
Parameters
| Type | Name | Description |
|---|---|---|
| ValueChangedEventHandler | value |
remove_TagChanged(ValueChangedEventHandler)
Declaration
public void remove_TagChanged(ValueChangedEventHandler value)
Parameters
| Type | Name | Description |
|---|---|---|
| ValueChangedEventHandler | value |
Events
KeyChanged
Event. Raised when key has been changed.
Declaration
public event ValueChangedEventHandler KeyChanged
Event Type
| Type |
|---|
| ValueChangedEventHandler |
TagChanged
Event. Raised when type of item has been changed.
Declaration
public event ValueChangedEventHandler TagChanged
Event Type
| Type |
|---|
| ValueChangedEventHandler |