- SpreadJS Overview
- Getting Started
- JavaScript Frameworks
- Best Practices
- Features
- SpreadJS Designer
- SpreadJS Designer Component
- SpreadJS Collaboration Server
- Touch Support
-
Formula Reference
- Formula Overview
-
Formula Functions
- Barcode Functions
- Compatibility Functions
- Database Functions
- Date and Time Functions
- Engineering Functions
- Financial Functions
- Information Functions
- Logical Functions
- Lookup and Reference Functions
- Math and Trigonometric Functions
- Statistical Functions
- Sparkline Functions
- Text Functions
- Web Functions
- RegEx Functions
- Other Functions
- Import and Export Reference
- Frequently Used Events
- API Documentation
- Release Notes
BC_PDF417
This function returns a data set representing a PDF417.
Syntax
BC_PDF417(value, color, backgroudColor, errorCorrectionLevel, rows, columns, compact, quietZoneLeft, quietZoneRight, quietZoneTop, quietZoneBottom)
Arguments
Argument | Description |
|---|---|
value | A string that represents encodes on the symbol of QRCode. |
color | A color that represents the barcode color. The default value is 'rgb(0,0,0)'. |
backgroundColor | A color that represents the barcode background color. The default value is 'rgb(255, 255, 255)' |
errorCorrectionLevel | A string that represents the error correction level of PDF417. It has 'auto'. |
rows | A value that specifies the number of rows in the symbol. It has 'auto'. |
columns | A value that specifies the number of columns in the symbol. It has 'auto'. |
compact | Specifies whether it is a compact PDF417. The default value is 'false'. |
quietZoneLeft | A value that represents the size of left quiet zone. |
quietZoneRight | A value that represents the size of right quiet zone. |
quietZoneTop | A value that represents the size of top quiet zone. |
quietZoneBottom | A value that represents the size of bottom quiet zone. |
Data Types
Accepts 35 alphanumeric characters and 2710 numeric characters. Returns barcode sparkline.
Examples
sheet.setFormula(3, 3, '=BC_PDF417(C4)');