Skip to main content
.NET 6.0+

CreateCustomCollectionSourceEventArgs(IObjectSpace, Type, String, CollectionSourceDataAccessMode, CollectionSourceMode) Constructor

Creates a new instance of the CreateCustomCollectionSourceEventArgs class.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public CreateCustomCollectionSourceEventArgs(
    IObjectSpace objectSpace,
    Type objectType,
    string listViewID,
    CollectionSourceDataAccessMode dataAccessMode,
    CollectionSourceMode mode
)

Parameters

Name Type Description
objectSpace IObjectSpace

An IObjectSpace object specifying the Object Space to be used by the custom Collection Source. This parameter value is assigned to the CreateCustomCollectionSourceEventArgs.ObjectSpace property.

objectType Type

The type of objects that will be retrieved from the database into the custom Collection Source. This parameter value is assigned to the CreateCustomCollectionSourceEventArgs.ObjectType property.

listViewID String

A string containing the identifier of the List View for which a custom Collection Source will be created. This parameter value is assigned to the CreateCustomCollectionSourceEventArgs.ListViewID property.

dataAccessMode CollectionSourceDataAccessMode

A CollectionSourceDataAccessMode enumeration value that specifies the mode used to access the Collection Source’s CollectionSourceBase.Collection.

mode CollectionSourceMode

A CollectionSourceMode enumeration value specifying the mode of operation for the Collection Source. This parameter value is assigned to the CreateCustomCollectionSourceEventArgs.Mode property.

See Also