WbkDataView.PropertyChanged

Syntax

PropertyChanged: function (sender, args);

Parameters

sender. Event source.

args. Event information.

Description

The PropertyChanged event occurs after a workbook parameter is changed.

Example

To execute the example, the page must contain the WorkbookBox component named workbookBox (see Example of Creating the WorkbookBox Component), and the workbook must contain a series with the formula type Non-linear Regression. Next add the following code in the event hander that processes document opening:

	workbookBox.getDataView().PropertyChanged.add(PP.Delegate(function(){
		alert("Workbook parameters changed");
	}));

To fire this event, click the Edit button in the statistics panel. Next edit the formula in the dialog box that opens for adding non-linear regression and click the OK button. To make the Edit button in the statistics panel available, select a Non-linear Regression series in the workbook. After this the PropertyChanged event is fired, and the following message appears: Workbook parameters are changed.

See also:

WbkDataView