Skip to main content

DiagramCustomShapeBuilder.AllowResize(Boolean) Method

Specifies whether the shape can be resized. Mirrors the client-side allowResize option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public DiagramCustomShapeBuilder AllowResize(
    bool value
)

Parameters

Name Type Description
value Boolean

The option value.

Returns

Type Description
DiagramCustomShapeBuilder

A reference to this instance after the method is called.

Remarks

Use the following notation to set the option’s value:

@(Html.DevExtreme().Diagram()
    .CustomShapes(customShapes => {
        customShapes.Add().AllowResize(true);
    })
)
See Also