ComponentOne DataObjects for .NET
BeforeFill Event (C1ExpressTable)

C1.Data.Express.2 Assembly > C1.Data.Express Namespace > C1ExpressTable Class : BeforeFill Event
Fired before the table is filled with data.
Syntax
'Declaration
 
Public Event BeforeFill As FillEventHandler
public event FillEventHandler BeforeFill
Event Data

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

PropertyDescription
The data set where the event has occurred.  
Filter conditions used to fill the data set.  
Used to detect which table views are being filled in the AfterFill event.  
Remarks
Use this event to set FillFilter and FillSort properties when the table is filled at startup due to FillOnRequest = True. For C1ExpressTable components connected to a C1ExpressConnection, the C1ExpressConnection's BeforeFill event is fired after all C1ExpressTable components' BeforeFill.
See Also