Click or drag to resize

UndoRecordEntry Class

Represents a single entry in a document's undo or redo history.
Inheritance Hierarchy
SystemObject
  RhinoUndoRecordEntry

Namespace:  Rhino
Assembly:  RhinoCommon (in RhinoCommon.dll)
Syntax
public sealed class UndoRecordEntry

The UndoRecordEntry type exposes the following members.

Properties
  NameDescription
Public propertyDescription
The name of the command that created the undoable events, or a description of what created them when they did not happen in a command.
Public propertySerialNumber
The runtime serial number Rhino assigned to this undo event.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns Description.
(Overrides ObjectToString.)
Top
Remarks
A document deletes its records as undo and redo are performed. An UndoRecordEntry is a snapshot of a record, so it remains usable after the document's history changes. Once the history has changed, the value of SerialNumber may no longer identify a record in that history.
See Also