| C1.Data.2 Assembly > C1.Data Namespace > C1DataSet Class : AfterFill Event |
'Declaration Public Event AfterFill As FillEventHandler
public event FillEventHandler AfterFill
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.
| Property | Description |
|---|---|
| DataSet | The data set where the event has occurred. |
| Filter | Filter conditions used to fill the data set. |
| TableViewNames | Used to detect which table views are being filled in the AfterFill event. |
In this event, you can modify the data set after it has been filled with data fetched from the server.