Sub OnChangePinnedSeries(Sender: Object; Args: IEventArgs);
Begin
//set of operators;
End Sub OnChangePinnedSeries;
Sender. Component that has generated the event.
Args. Event parameters.
The OnChangePinnedSeries event occurs on pinning a calculated series in the workbook or on removing pinned state.
Parameters of this event cannot be changed.
Executing the example requires a form, the LanerBox component named LanerBox1 on the form, and the UiErAnalyzer component used as a data source for LanerBox. The workbook of time series database must be loaded to the UiErAnalyzer. The form also contains the Memo component with Memo1 identifier.
This procedure must be assigned the OnChangePinnedSeries event handler for the LanerBox component.
Sub LanerBox1OnChangePinnedSeries(Sender: Object; Args: IEventArgs);
Begin
Memo1.Lines.Add("Work series is docked or undocked");
End Sub LanerBox1OnChangePinnedSeries;
On changing the state of a fixed calculated series the appropriate information is displayed in the Memo1 component.
See also: