| Components | All | New | MacOS | Windows | Linux | iOS | ||||
| Examples | Mac & Win | Server | Client | Guides | Statistic | FMM | Blog | Deprecated | Old | |
Barcode.SetInputMode
Sets input mode.
| Component | Version | macOS | Windows | Linux | Server | iOS SDK |
| Barcode | 8.1 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes |
MBS( "Barcode.SetInputMode"; Mode ) More
Parameters
| Parameter | Description | Example |
|---|---|---|
| Mode | The new input mode. | "GS1" |
Result
Returns OK or error.
Description
Sets input mode.Mode can be empty for default.
Values include data, unicode, GS1, Kanji or SJIS.
Examples
Set input mode for ASCII or data:
MBS( "Barcode.SetInputMode"; "Data" )
// Uses full ASCII range interpreted as Latin-1 or binary data.
// Uses full ASCII range interpreted as Latin-1 or binary data.
Set input mode for Unicode:
MBS( "Barcode.SetInputMode"; "Unicode" )
// Uses pre-formatted UTF-8 input.
// Uses pre-formatted UTF-8 input.
Set input mode for GS1:
MBS( "Barcode.SetInputMode"; "GS1" )
// Encodes GS1 data using FNC1 characters.
// Encodes GS1 data using FNC1 characters.
Encode Data Matrix with GS1:
Set Field [ Barcode Generation::Image ; "" ]
Set Variable [ $r ; Value: MBS( "Barcode.SetInputMode"; "GS1" ) ]
Set Variable [ $img ; Value: MBS("Barcode.Generate"; "DataMatrix"; "[01]98898765432106[3202]012345[15]991231") ]
If [ MBS("IsError") = 0 ]
Set Field [ Barcode Generation::Image ; MBS( "GMImage.WriteToPNGContainer"; $img; "barcode.png") ]
Set Variable [ $r ; Value: MBS( "GMImage.Release"; $img ) ]
End If
Set Variable [ $r ; Value: MBS( "Barcode.SetInputMode"; "GS1" ) ]
Set Variable [ $img ; Value: MBS("Barcode.Generate"; "DataMatrix"; "[01]98898765432106[3202]012345[15]991231") ]
If [ MBS("IsError") = 0 ]
Set Field [ Barcode Generation::Image ; MBS( "GMImage.WriteToPNGContainer"; $img; "barcode.png") ]
Set Variable [ $r ; Value: MBS( "GMImage.Release"; $img ) ]
End If
Set input mode for data with escape handling:
MBS( "Barcode.SetInputMode"; "Data Escape” )
See also
- Barcode.Generate
- Barcode.GetInputMode
- Barcode.SetPrimary
- GMImage.Release
- GMImage.WriteToPNGContainer
- IsError
Release notes
- Version 8.1
Blog Entries
This function is free to use.
Created 23th February 2018, last changed 5th September 2025