Class HistoryPair
Class that represents pairs of history data.
Inheritance
System.Object
HistoryPair
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Windows.Forms.HTMLUI
Assembly: Syncfusion.HTMLUI.Windows.dll
Syntax
public class HistoryPair
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
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 |
Events
KeyChanged
Event. Raised when key has been changed.
Declaration
public event ValueChangedEventHandler KeyChanged
Event Type
TagChanged
Event. Raised when type of item has been changed.
Declaration
public event ValueChangedEventHandler TagChanged