Delegat SubreportProcessingEventHandler
Represents the method that will handle the SubreportProcessing event of a ReportViewer.
Przestrzeń nazw: Microsoft.Reporting.WebForms
Zestaw: Microsoft.ReportViewer.WebForms (w Microsoft.ReportViewer.WebForms.dll)
Składnia
'Deklaracja
Public Delegate Sub SubreportProcessingEventHandler ( _
sender As Object, _
e As SubreportProcessingEventArgs _
)
public delegate void SubreportProcessingEventHandler(
Object sender,
SubreportProcessingEventArgs e
)
public delegate void SubreportProcessingEventHandler(
Object^ sender,
SubreportProcessingEventArgs^ e
)
type SubreportProcessingEventHandler =
delegate of
sender:Object *
e:SubreportProcessingEventArgs -> unit
Język JScript nie obsługuje delegatów.
Parametry
- sender
Typ: Object
The object that raised the event.
- e
Typ: Microsoft.Reporting.WebForms.SubreportProcessingEventArgs
A SubreportProcessingEventArgs object containing information about the event.
Uwagi
You must supply data for any data sources used in subreports. To do this, you must supply an event handler for the subreport processing event.
For more information about handling events, see Używające zdarzeń.
Przykłady
Please see the SubreportProcessing method of the LocalReport class for an example.