WorkbookView.PropertyChanged

Syntax

PropertyChanged: function (sender, args);

Parameters

sender. Event source.

args. Event information.

Description

The PropertyChanged event is fired on changing tool ribbon or side panel properties.

Example

To execute the example, the page must contain the WorkbookBox component named workbookBox (see Example of Creating the WorkbookBox Component), and also add the following code in the handler, that processes document opening event:

workbookBox.PropertyChanged.add(onDummyActionFactory("Event of changing properties in the tool ribbon or properties panel occurred"));

To fire the event, select a series with the Linear Regression formula type in the workbook. To add such a series to workbook, select two non-calculated series, and next select Linear Regression in the Regression group of the Calculations tab. Next open the Parameters panel in the Series tab of the side panel, check the Autoregression checkbox, and after that click the Refresh button in the Home ribbon tab. In the dialog box that opens click the Yes button, after which the console displays the message about occurring the PropertyChanged event.

See also:

WorkbookView