Skip to main content
.NET 6.0+

ObjectCreatingEventArgs(IObjectSpace, Type) Constructor

Initializes a new instance of the ObjectCreatingEventArgs class.

Namespace: DevExpress.ExpressApp.SystemModule

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public ObjectCreatingEventArgs(
    IObjectSpace objectSpace,
    Type objectType
)

Parameters

Name Type Description
objectSpace IObjectSpace

An IObjectSpace object representing the Object Space which is used to create a new object.

objectType Type

A type of an object to be created.

Remarks

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

See Also