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.PanesUnfrozen Event

Occurs after a frozen worksheet area has been unlocked via the SpreadsheetControl‘s UI.

Namespace: DevExpress.XtraSpreadsheet

Assembly: DevExpress.XtraSpreadsheet.v24.2.dll

NuGet Package: DevExpress.Win.Spreadsheet

#Declaration

public event PanesUnfrozenEventHandler PanesUnfrozen

#Event Data

The PanesUnfrozen event's data class is PanesUnfrozenEventArgs.

#Remarks

Handle the PanesUnfrozen event to perform specific actions when an end-user unlocks frozen rows and columns on a worksheet via the control’s UI. After a worksheet area has been frozen, the SpreadsheetControl.PanesFrozen event is raised.

Note

By default, the PanesUnfrozen event does not occur when unfreezing rows and columns in code. However, this event will also be triggered by changes made via an API if you set the WorkbookEventOptions.RaiseOnModificationsViaAPI property (accessible via the SpreadsheetControl.Options.Events.RaiseOnModificationsViaAPI notation) to true.

See Also