ActiveReports Developer 7
LocateDataSource Event
See Also 
GrapeCity.ActiveReports.Design.Win.v7 Assembly > GrapeCity.ActiveReports.Design Namespace > Designer Class : LocateDataSource Event

Glossary Item Box

Occurs when a data provider of the previewed report needs to locate the data at runtime.

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