You can enumerate through the set of views currently associated with the data source control by calling the GetViewNames method.
Data source control classes can support one or more views on their underlying data. These views are represented by instances of the DataSourceView class. The data source view defines the capabilities of a data source control, does all the work necessary to retrieve data from the underlying data store, and performs operations such as sorting, inserting, deleting, and updating.
Note: |
|---|
| The DataSourceControl class's default implementation returns a null reference (Nothing in Visual Basic). If you extend the DataSourceControl class, override the GetView method to return the specified DataSourceView object. |