Raised every time a new record is processed.
[Visual Basic]
Public Event FetchData() As ActiveReport.FetchEventHandler
[C#]
public event ActiveReport.FetchEventHandler FetchData();
The event handler receives an argument of type ActiveReport.FetchEventArgs containing data related to this event. The following ActiveReport.FetchEventArgs properties provide information specific to this event.
Property | Description |
---|---|
EOF | This parameter is passed by reference and its default Value is True. It has to be explicitly set to False for the report to continue processing more records when the report is unbound. For bound reports, the EOF property is set automatically. |
This event is used to set the values of custom unbound fields that were added in the DataInitialize event.
ActiveReports does not null unbound field values before firing this event. The unbound field value is carried over so you should always set the values of all unbound fields in this event.
Note: Do not reference the Fields collection outside the DataInitialize and FetchData events.
[C#]
private void rptUnbound_FetchData(object sender, DataDynamics.ActiveReports.ActiveReport. |
[Visual Basic]
Private Sub rptUnbound_FetchData(ByVal sender As Object, ByVal eArgs As DataDynamics._ |
ActiveReport Class | ActiveReport Members | DataInitialize | Walkthrough: Unbound Reports | Firing Sequence of Events
Copyright © 2004-2005 Data Dynamics, Ltd. All rights reserved.