Skip to main content

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

SpreadsheetControl.DocumentPropertiesChanged Event

Occurs after one of the DocumentProperties is changed.

Namespace: DevExpress.Xpf.Spreadsheet

Assembly: DevExpress.Xpf.Spreadsheet.v24.2.dll

NuGet Package: DevExpress.Wpf.Spreadsheet

#Declaration

public event DocumentPropertiesChangedEventHandler DocumentPropertiesChanged

#Event Data

The DocumentPropertiesChanged event's data class is DocumentPropertiesChangedEventArgs. The following properties provide information specific to this event:

Property Description
BuiltInPropertiesChanged Indicates whether one of the built-in DocumentProperties is changed.
CustomPropertiesChanged Indicates whether one of the custom DocumentProperties is changed.

#Remarks

The DocumentPropertiesChanged event allows you to distinguish built-in and custom document properties modifications by checking values of the DocumentPropertiesChangedEventArgs.BuiltInPropertiesChanged and DocumentPropertiesChangedEventArgs.CustomPropertiesChanged properties. .

See Also