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

ViewCreatingEventArgs(String, IObjectSpace, Boolean) Constructor

Initializes a new instance of the ViewCreatingEventArgs class.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v18.2.dll

Declaration

public ViewCreatingEventArgs(
    string viewID,
    IObjectSpace objectSpace,
    bool isRoot
)

Parameters

Name Type Description
viewID String

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

objectSpace IObjectSpace

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

isRoot Boolean

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

Remarks

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

See Also