ActiveReports Developer 7
LocateDataSource Event
See Also 
GrapeCity.ActiveReports.v7 Assembly > GrapeCity.ActiveReports.Document Namespace > PageDocument Class : LocateDataSource Event

Glossary Item Box

Occurs when the report needs to locate a data source with from the calling application.

Syntax

Visual Basic (Declaration) 
Public Event LocateDataSource As LocateDataSourceEventHandler
C# 
public event LocateDataSourceEventHandler LocateDataSource

Event Data

The event handler receives an argument of type LocateDataSourceEventArgs containing data related to this event. The following LocateDataSourceEventArgs properties provide information specific to this event.

PropertyDescription
Data The data returned by the event handler.
DataSetName Gets the name of data set to be located.
DataSourceName Gets the name of data source that contains the data set to be located.
Report Gets the Report that is trying to locate the data set.

See Also