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

ModelEditorGroupingHelper.Instance Property

Gets the existing ModelEditorGroupingHelper instance.

Namespace: DevExpress.ExpressApp.ModelEditor

Assembly: DevExpress.ExpressApp.v18.2.dll

Declaration

public static ModelEditorGroupingHelper Instance { get; }

Property Value

Type Description
ModelEditorGroupingHelper

An ModelEditorGroupingHelper object.

Remarks

Use the Instance property to access the API provided by the ModelEditorGroupingHelper class. This property is static. You can use it in the platform-agnostic module’s constructor.

using DevExpress.ExpressApp.ModelEditor;
// ...
public sealed partial class MySolutionModule : ModuleBase {
    public MySolutionModule () {
        InitializeComponent();
        ModelEditorGroupingHelper.Instance.AllowSplitByPoint = true;
    }
    // ...
}
See Also