Class HistoryEntry
HistoryEntry consists of Command to execute and reference to proceeding and preceeding history entries.
Inheritance
System.Object
HistoryEntry
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.Diagram
Assembly: Syncfusion.Diagram.Base.dll
Syntax
public class HistoryEntry
Remarks
Used in HistoryList class.
Constructors
HistoryEntry(ICommand)
Declaration
public HistoryEntry(ICommand command)
Parameters
Type | Name | Description |
---|---|---|
ICommand | command |
Properties
Command
Gets history entry.
Declaration
public ICommand Command { get; }
Property Value
Type |
---|
ICommand |
Next
Gets or sets next history node.
Declaration
public HistoryEntry Next { get; set; }
Property Value
Type |
---|
HistoryEntry |
Previous
Gets or sets previous history node.
Declaration
public HistoryEntry Previous { get; set; }
Property Value
Type |
---|
HistoryEntry |