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

CreateCustomPropertyCollectionSourceEventArgs(IObjectSpace, Type, Object, IMemberInfo, String, CollectionSourceMode) Constructor

Creates a new instance of the CreateCustomPropertyCollectionSourceEventArgs class.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v19.1.dll

Declaration

public CreateCustomPropertyCollectionSourceEventArgs(
    IObjectSpace objectSpace,
    Type masterObjectType,
    object masterObject,
    IMemberInfo memberInfo,
    string listViewID,
    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 CreateCustomPropertyCollectionSourceEventArgs.ObjectSpace property.

masterObjectType Type

The type of an object whose collection property the custom Collection Source will represent. This parameter value is assigned to the CreateCustomPropertyCollectionSourceEventArgs.MasterObjectType property.

masterObject Object

An object whose collection property the custom Collection Source will represent. This parameter value is assigned to the CreateCustomPropertyCollectionSourceEventArgs.MasterObject property.

memberInfo IMemberInfo

An IMemberInfo object suplying metadata information on the collection property that the custom Collection Source will represent. This parameter value is assigned to the CreateCustomPropertyCollectionSourceEventArgs.MemberInfo property.

listViewID String

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

mode CollectionSourceMode

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

See Also