AfterFetchNextBatch event

(Windows only; GUI for .NET only)

This .NET event fires after the BindingSource object fetches the next batch of records when either the Batching property is set to true or the MaxDataGuess property is non-zero.

Access: PUBLIC

Applies to: Progress.Data.BindingSource class

Syntax

The delegate for this event defines the following event handler signature:

VOID EventHandlerName 
  ( 
     INPUT sender AS CLASS System.Object,
     INPUT args AS CLASS System.EventArgs
  ).
EventHandlerName
The name of the event handler.
sender
Object reference to the BindingSource object instance that published the event.
args
Object reference to a System.EventArgs object instance containing arguments for the event.

When the event fires, there may be action that needs to be taken, such as calling control-specific methods or properties, to govern the control’s behavior during this record fetching operation.

See also

Batching property, MaxDataGuess property