OnChangePinnedSeries(Sender: Object; Args: IEventArgs);
Sender. The component that 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 that is a data source for LanerBox. A workbook of time series database should be loaded to UiErAnalyzer. The form also contains the Memo component with the Memo1 identifier.
The described procedure should be assigned as a handler of the OnChangePinnedSeries event for LanerBox.
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: