Skip to main content
.NET 6.0+

CustomCloneObjectEventArgs(Object, Type, XafApplication, Frame, View) Constructor

Initializes a new instance of the CustomCloneObjectEventArgs class.

Namespace: DevExpress.ExpressApp.CloneObject

Assembly: DevExpress.ExpressApp.CloneObject.Xpo.v23.2.dll

Declaration

public CustomCloneObjectEventArgs(
    object sourceObject,
    Type targetType,
    XafApplication application,
    Frame frame,
    View view
)

Parameters

Name Type Description
sourceObject Object

An object representing the source object to be cloned.

targetType Type

The type of the target object.

application XafApplication

An XafApplication object which is the current application.

frame Frame

A Frame that displays an object to be cloned.

view View

A View that displays an object to be cloned.

Remarks

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

See Also