QRCodeBuilder
Methods
Background(System.String)
Sets the background color of the QR code.
Parameters
color - System.String
The QR code background color.
Example
@(Html.Kendo().QRCode()
.Name("qrCode")
.Background("red")
)
Border(System.String,System.Int32)
Sets the border width and color of the QR code.
Parameters
color - System.String
The QR code border color.
width - System.Int32
The QR code border width.
Example
@(Html.Kendo().QRCode()
.Name("qrCode")
.Border("black", 5)
)
Border(System.Action)
Sets the border configuration of the QRCode.
Parameters
configurator - System.Action<QRBorderBuilder>
The lambda which configures the border.
Example
@(Html.Kendo().QRCode()
.Name("qrCode")
.Border(border =>
// configure the border
border
.Color("black")
.Width(5)
)
)
Color(System.String)
Sets the color of the QR code.
Parameters
color - System.String
The QR code color.
Example
@(Html.Kendo().QRCode()
.Name("qrCode")
.Color("blue")
)
Encoding(Kendo.Mvc.UI.QREncoding)
Sets the encoding of the QR code.
Parameters
encoding - QREncoding
The QR code encoding.
Example
@(Html.Kendo().QRCode()
.Name("qrCode")
.Encoding(QREncoding.UTF_8)
)
ErrorCorrection(Kendo.Mvc.UI.QRErrorCorrectionLevel)
Sets the error correction level of the QR code.
Parameters
errorCorrection - QRErrorCorrectionLevel
The QR code error correction level.
Example
@(Html.Kendo().QRCode()
.Name("qrCode")
.ErrorCorrection(QRErrorCorrectionLevel.Q)
)
Size(System.Int32)
Sets the size of the QR code.
Parameters
size - System.Int32
The QR code size.
Example
@(Html.Kendo().QRCode()
.Name("qrCode")
.Size(170)
)
Value(System.String)
Sets the value of the QR code.
Parameters
value - System.String
The QR value.
Example
@(Html.Kendo().QRCode()
.Name("qrCode")
.Value("Hello world")
)
Padding(System.Int32)
Sets the padding of the QR code.
Parameters
padding - System.Int32
The QR padding.
Example
@(Html.Kendo().QRCode()
.Name("qrCode")
.Padding(5)
)
RenderAs(Kendo.Mvc.UI.RenderingMode)
Parameters
renderAs - RenderingMode
Overlay(System.Action)
The overlay configuration which alows you to choose from predefined layouts or insert a custom image.
Parameters
configurator - System.Action<QRCodeOverlayBuilder>
The configurator for the overlay setting.
Example
@(Html.Kendo().QRCode()
.Name("qrCode")
.Overlay(o=>o.Width(200))
)
ToComponent()
Returns the internal view component.
Name(System.String)
Sets the name of the component.
Parameters
componentName - System.String
The name of the component.
Example
@(Html.Kendo().Grid<OrderViewModel>()
.Name("grid")
.Columns(columns =>
{
columns.Bound(p => p.OrderID).Filterable(false);
columns.Bound(p => p.Freight);
})
.DataSource(dataSource => dataSource
.Ajax()
.PageSize(20)
.Read(read => read.Action("Orders_Read", "Grid"))
)
)
Deferred(System.Boolean)
Suppress initialization script rendering. Note that this options should be used in conjunction with
Parameters
deferred - System.Boolean
ModelMetadata(System.Web.Mvc.ModelMetadata)
Uses the Metadata of the Model.
Parameters
modelMetadata - System.Web.Mvc.ModelMetadata
The metadata set for the Model
HtmlAttributes(System.Object)
Sets the HTML attributes.
Parameters
attributes - System.Object
The HTML attributes.
HtmlAttributes(System.Collections.Generic.IDictionary)
Parameters
attributes - System.Collections.Generic.IDictionary<String,Object>
AsModule(System.Boolean)
Specifies whether the initialization script of the component will be rendered as a JavaScript module.
Parameters
value - System.Boolean
Render()
Renders the component.
Example
@(@Page Inherits="System.Web.Mvc.ViewPage<IEnumerable<Product>>" )
@( Html.Kendo().Grid(Model)
.Name("grid")
.DetailTemplate(product => {
)
Product Details:
<div>Product Name: @( product.ProductName )</div>
<div>Units In Stock: @( product.UnitsInStock )</div>
@(
})
.Render();
)
ScriptAttributes(System.Object,System.Boolean)
Sets the JavaScript attributes to the initialization script.
Parameters
attributes - System.Object
The JavaScript attributes.
overrideAttributes - System.Boolean
Argument which determines whether attributes should be overriden.
ScriptAttributes(System.Collections.Generic.IDictionary,System.Boolean)
Sets the JavaScript attributes to the initialization script.
Parameters
attributes - System.Collections.Generic.IDictionary<String,Object>
The JavaScript attributes.
overrideAttributes - System.Boolean
Argument which determines whether attributes should be overriden.