Skip to main content
Row

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.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