Docs
  • Getting Started
  • Overview
    • Understanding
      • User-Interface
      • Shortcuts
    • Getting Started
      • Creating A New Application
      • Adding Basic Structure using Class Designer
      • Creating a link to the TIVITY File Class
      • Setting Rights
      • Creating Queries
      • Building The Layout
        • Creating an App Page
        • Creating an Object Page
        • Creating a List Item Layout
  • Building an Application
    • Application Setup
      • General
      • Documentation
      • License Management
      • Publishing the Application
      • Advanced Settings
        • Document-MailEditor
    • Data
      • Sources
      • Data Modelling
        • Class
        • Field
        • Action
        • Link
      • Query Data
        • Get Started with Query Designer
        • Common
        • Fields
        • Conditions
        • Default Values
        • Preview
      • Roles & Permissions
        • Rights Designer
      • Access Control Lists (ACL)
    • Views
      • Design UI
        • Page Types
        • Fields and Links
        • Layout Controls
          • Actions
          • Panels
          • Sections
          • Lists
          • Input
        • Layout Templates
      • Document Templates
        • Get started with Template Designer
        • Expressions in Templates
    • Execution
      • Functions
      • Workflows
        • Control Types
      • Trigger
      • Scripting
        • Accessing the Script Designer
        • Using the Script Designer
        • Commonly used Actions
        • Reference: Actions
          • Math
          • System
          • Date
          • Collection
          • LogicalOperators
          • Web
          • Structure
          • Constants
          • Converters
          • Commands
          • Text
          • PDF
          • Operators
          • PowerPoint
          • QR-/Barcode
          • Messaging
          • Cells
          • Xml
          • Admin
          • Integrations
    • Expressions
      • Expressions in Expressions
      • Expressions in Condition Values
  • Administration
    • Platform
    • Workspace
    • Security
    • Platform Setup
  • Extensibility and Integration
    • REST API
    • Source Adapter
      • Getting Started
      • Source Adapter Interface
      • RESTful Adapter Service
  • Adapter Portfolio
    • MongoDB Adapter
  • Platform Features
    • Enterprise Search
      • Integration into an App
      • General Settings
    • Templates
    • Tagging
      • Getting Started
      • Manage Tags
      • Settings
      • Usage
        • Tag filter
        • Tag panel
    • DMS Setup
Powered by GitBook
On this page
  • CreateBarcode
  • ReadBarcode

Was this helpful?

  1. Building an Application
  2. Execution
  3. Scripting
  4. Reference: Actions

QR-/Barcode

CreateBarcode

Creates a QR or bar code and returns the Document with the image. The generated barcode image can be manipulated with parameter options.

Syntax

CreateBarcode ( CodeText [, EncodeType] [, XDimension] [, YDimension] [, BarcodeColor] [, RotationAngle] )

Parameters

CodeText The coding text of the barcode. Type: String

EncodeType (optional) The encode type of the barcode, e.g QR, ISBN, DataMatrix, Pdf417. Default is EAN13 Type: String

XDimension (optional) The X dimension determines a barcode's density. If the X dimension is large so the barcode can hold more information, in fact the barcode is getting bigger. Default dimension is 0,6. Type: Double

YDimension (optional) The Y dimension is to 2D barcodes what the X dimension is for linear barcodes. Default dimension is 2,0. Type: Double

BarcodeColor (optional) The barcode color in ARGB format, e.g. '255,0,0,0' for black Type: String

RotationAngle (optional) The rotation angle in degrees. If angle NOT equal to 90, 180, 270 or 0, it may difficulty to read the image. Type: Double

Return Type

Document

ReadBarcode

Analyzes a QR or bar code and returns the stored information as a string. Input Document must contain an image (supported formats).

Syntax

ReadBarcode ( Document [, DecodeBarCodeType] )

Parameters

Document Document object containing the barcode image Type: Document

DecodeBarCodeType (optional) Specify the type of barcode to read, e.g QR, ISBN, DataMatrix, Pdf417, Code39Standard. Default is all types. Type: String

Return Type

String

PreviousPowerPointNextMessaging

Last updated 4 years ago

Was this helpful?