Sub OnFinishSearch(Sender: Object; Args: IEventArgs);
Begin
//set of operators;
End Sub OnFinishSearch;
Sender. Parameter that returns the component that generated the event.
Args. Parameter that allows to determine event parameters.
The OnFinishSearch event occurs after finishing BI search.
After finishing BI search the total number of matches is available in the ISearchDataSourcesBox.TotalCount property. The ISearchDataSourcesBox.Items property allows to see the first 100 records with search results, to get the next records, use the ISearchDataSourcesBox.LoadNextPage method.
See also: