Class HistoryEntry
HistoryEntry consists of Command to execute and reference to proceeding and preceeding history entries.
Inheritance
System.Object
HistoryEntry
Namespace: Syncfusion.Windows.Forms.Diagram
Assembly: Syncfusion.Diagram.Base.dll
Syntax
public class HistoryEntry : Object
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 |