Skip to main content
.NET 6.0+

ModelEditorGroupingHelper.AllowSplitByPoint Property

Specifies, whether or not the groups are split into subgroups by the dot character in the Model Editor‘s Nodes Tree.

Namespace: DevExpress.ExpressApp.ModelEditor

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public bool AllowSplitByPoint { get; set; }

Property Value

Type Description
Boolean

true, if groups are split into subgroups by the dot character; otherwise, false.

Remarks

You can change the AllowSplitByPoint value 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