GalleryBuilder.InitialItemWidth(Double) Method
Specifies the width of an area used to display a single image. Mirrors the client-side initialItemWidth option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
Declaration
public GalleryBuilder InitialItemWidth(
double value
)
Parameters
Name | Type | Description |
---|---|---|
value | Double | The option value. |
Returns
Type | Description |
---|---|
GalleryBuilder | A reference to this instance after the method is called. |
Remarks
Use the following notation to set the option’s value:
@(Html.DevExtreme().Gallery()
.InitialItemWidth(100)
)
See Also