QRCodeOverlayBuilder

Methods

Height(System.Double)

The height of the overlay in pixels.

Parameters

value - System.Double

The value for Height

Example

Razor
 
            @(Html.Kendo().QRCode()
                .Name("qrCode")
                .Overlay(o=>o.Height(200))
            )
             

Type(System.String)

Parameters

value - System.String

ImageUrl(System.String)

The URL of the displayed overlay image.

Parameters

value - System.String

The value for ImageUrl

Example

Razor
 
            @(Html.Kendo().QRCode()
                .Name("qrCode")
                .Overlay(o=>o.ImageUrl("value"))
            )
             

Width(System.Double)

The width of the overlay in pixels.

Parameters

value - System.Double

The value for Width

Example

Razor
 
            @(Html.Kendo().QRCode()
                .Name("qrCode")
                .Overlay(o=>o.Width(200))
            )