evCreate API 5.7 Help

QR Codes

The QR Codes subsection of the Object section of the evCreate API includes enumerations and functions to create and update QR code items.

qrcode namespace

The QR Codes subsection of the Object evCreate API section is accessed with the qrcode namespace inside the object namespace:

evCreate.object.qrcode.Function()

Enumerations

EvQRCodeColor

An enumeration of colors for drawing QR code items.

Functions

Create(bounds: EvRect, qrstring?: string, color?: EvQRCodeColor, zOrder?: EvObjectZOrder): Promise<EvItem>

A function to create a new QR code item.

SetColor(obj: EvItem, color: EvQRCodeColor): Promise<void>

A function to change the color of a given QR code item.

SetQRString(obj: EvItem, qrstring: string): Promise<void>

A function to replace the payload encoded in a given QR code item with a given string.

09 April 2025