Skip to main content
Row

Workbook.History Property

Provides access to the history of operations performed in a workbook.

You need a license for the DevExpress Office File API Subscription or DevExpress Universal Subscription to use this property in production code.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Docs.v23.2.dll

NuGet Package: DevExpress.Document.Processor

Declaration

public SpreadsheetHistory History { get; }

Property Value

Type Description
SpreadsheetHistory

A SpreadsheetHistory object.

Remarks

The History property provides access to the SpreadsheetHistory object that allows you to undo (the SpreadsheetHistory.Undo method) and redo (the SpreadsheetHistory.Redo method) the last actions performed, or to clear the history of operations (the SpreadsheetHistory.Clear method). To trace the history of changes made in a workbook, set the SpreadsheetHistory.IsEnabled property to true.

Implements

See Also