Skip to main content

ResponsiveBoxRowBuilder.Shrink(Double) Method

A factor that defines how much a row height shrinks relative to the rest of the rows in the container. Mirrors the client-side shrink option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public ResponsiveBoxRowBuilder Shrink(
    double value
)

Parameters

Name Type Description
value Double

The option value.

Returns

Type Description
ResponsiveBoxRowBuilder

A reference to this instance after the method is called.

Remarks

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

@(Html.DevExtreme().ResponsiveBox()
    .Rows(rows => {
        rows.Add().Shrink(10);
    })
)
See Also