RangeSelectorExportBuilder.PrintingEnabled(JS) Method
In This Article
Enables the printing feature in the UI component. Applies only if the export.enabled property is true. Mirrors the client-side printingEnabled option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
public RangeSelectorExportBuilder PrintingEnabled(
JS value
)
#Parameters
Name | Type | Description |
---|---|---|
value | JS | A Java |
#Returns
Type | Description |
---|---|
Range |
A reference to this instance after the method is called. |
#Remarks
Use the new JS() expression to set the option’s value.
<script>
var myValue = ...;
</script>
@(Html.DevExtreme().RangeSelector()
.Export(export => export
.PrintingEnabled(new JS("myValue"))
)
)
See Also