Class HistoryEventArgs

Provides event information when history event occurs.

Inheritance
System.Object
HistoryEventArgs
Namespace: PSPDFKit.Document
Assembly: PSPDFKit.dll
Syntax
public sealed class HistoryEventArgs

Properties

Action

Action that resulted in the event i.e. Undo or Redo.

Declaration
public HistoryAction Action { get; set; }
Property Value
Type Description
HistoryAction

After

Resulting state of the annotation, or null if it's being deleted.

Declaration
public IAnnotation After { get; set; }
Property Value
Type Description
IAnnotation

Before

Previous state of the annotation, or null if it's being restored.

Declaration
public IAnnotation Before { get; set; }
Property Value
Type Description
IAnnotation