Skip to main content
A newer version of this page is available. .
Row

Workbook.History Property

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

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

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Docs.v18.2.dll

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