ToastBuilder.CloseOnClick(Boolean) Method
In This Article
A Boolean value specifying whether or not the toast is closed if a user clicks it. Mirrors the client-side closeOnClick option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
public ToastBuilder CloseOnClick(
bool value
)
#Parameters
Name | Type | Description |
---|---|---|
value | Boolean | The option value. |
#Returns
Type | Description |
---|---|
Toast |
A reference to this instance after the method is called. |
#Remarks
Use the following notation to set the option’s value:
@(Html.DevExtreme().Toast()
.CloseOnClick(true)
)
See Also