Skip to main content
A newer version of this page is available. .

ListViewCreatingEventArgs(String, CollectionSourceBase, Boolean) Constructor

Initializes a new instance of the ListViewCreatingEventArgs class.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v19.1.dll

Declaration

public ListViewCreatingEventArgs(
    string viewID,
    CollectionSourceBase collectionSource,
    bool isRoot
)

Parameters

Name Type Description
viewID String

A string value that represents the ID of the List View to be created.

collectionSource CollectionSourceBase

A CollectionSourceBase object that represents the collection source for the new List View.

isRoot Boolean

true if the new List View is root; otherwise, false.

Remarks

Since instances of the ListViewCreatingEventArgs class are automatically created and passed to handlers of the XafApplication.ListViewCreating event, you do not need to call this constructor from your applications.

See Also