Skip to main content
All docs
V24.1

ResizableBuilder.Area(String) Method

Specifies the area within which users can resize the UI component. Mirrors the client-side area option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public ResizableBuilder Area(
    string value
)

Parameters

Name Type Description
value String

The option value.

Returns

Type Description
ResizableBuilder

A reference to this instance after the method is called.

Remarks

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

@(Html.DevExtreme().Resizable()
    .Area("#elementId")
)
See Also