BoxItemBuilder.Box(Action<BoxBuilder>) Method
Holds a Box configuration object for the item. Mirrors the client-side box object.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
Declaration
public BoxItemBuilder Box(
Action<BoxBuilder> configurator
)
Parameters
Name | Type | Description |
---|---|---|
configurator | Action<BoxBuilder> | A function that allows you to specify nested options. |
Returns
Type | Description |
---|---|
BoxItemBuilder | A reference to this instance after the method is called. |
Remarks
This method provides access to methods that allow you to configure nested options of the client-side box object.
To specify nested options, use a lambda expression.
@(Html.DevExtreme().Box()
.Items(items => {
items.Add().Box(box => box
// call methods to specify nested options
);
})
)
Refer to Nested Options and Collections for more information.
See Also