New to Telerik UI for ASP.NET MVC? Download free 30-day trial

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)

Sets the preferred rendering engine. If it is not supported by the browser, the Chart will switch to the first available mode.

Parameters

renderAs - RenderingMode

The preferred rendering engine.

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.

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 Kendo.Mvc.UI.Fluent.WidgetFactory.DeferredScripts(System.Boolean)

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>

AsChildComponent()

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();
            )

ToHtmlString()

ToClientTemplate()

In this article
Not finding the help you need?