-
Notifications
You must be signed in to change notification settings - Fork 1
IDAutomation.Codabar
jdubs edited this page Oct 23, 2016
·
1 revision
The Codabar barcode option is specified in IDAutomation Barcode Fonts, Components and Applications to create a Codabar Barcode, which is a symbology that easily encodes numbers without the requirement of check characters.
http://www.idautomation.com/barcode/codabar.html
SpecName (constant) The variable containing the input to be converted. Proper UPC font must be applied in the template.
ErrorMessage (multiple | optional) The error message to return when any error occurs.
ublic static void Codabar(string SpecName, object ErrorMessage)
{
Actions.Break();
try
{
string code = Actions.Variable(SpecName).Value;
Actions.Variable(SpecName).Value = CallFontEncoder("Codabar", new object[] { code });
}
catch (Exception ex)
{
throw new Actions.Four51ActionsException(ex.Message, (string)ErrorMessage);
}
}