ResizableBuilder.Handles(ResizeHandle[]) Method
Specifies which borders of the UI component element are used as a handle. Mirrors the client-side handles option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
Declaration
public ResizableBuilder Handles(
params ResizeHandle[] values
)
Parameters
Name | Type | Description |
---|---|---|
values | ResizeHandle[] | 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()
.Handles(ResizeHandle.All)
)
See Also